mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 20:10:13 +02:00
Rename GroupRequest to HostRequest
We'll also use this to encode information in when launching `yabridge-host.exe` for individually hosted plugins.
This commit is contained in:
@@ -183,10 +183,10 @@ GroupHost::GroupHost(boost::asio::io_context& io_context,
|
||||
write_object(
|
||||
group_socket,
|
||||
// TODO: The plugin type should of course not be hardcoded
|
||||
GroupRequest{.plugin_type = PluginType::vst2,
|
||||
.plugin_path = plugin_path.string(),
|
||||
.endpoint_base_dir = endpoint_base_dir.string()});
|
||||
const auto response = read_object<GroupResponse>(group_socket);
|
||||
HostRequest{.plugin_type = PluginType::vst2,
|
||||
.plugin_path = plugin_path.string(),
|
||||
.endpoint_base_dir = endpoint_base_dir.string()});
|
||||
const auto response = read_object<HostResponse>(group_socket);
|
||||
assert(response.pid > 0);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user