Implement first RPC commands to install/launch apps

This commit is contained in:
Simon Fels 2016-06-28 19:45:14 +02:00
commit ed23744a17
26 changed files with 921 additions and 12 deletions

View file

@ -37,6 +37,8 @@ void MessageProcessor::dispatch(bridge::Invocation const& invocation) {
invoke(this, server_.get(), &Server::install_application, invocation);
else if (invocation.method_name() == "launch_application")
invoke(this, server_.get(), &Server::launch_application, invocation);
else if (invocation.method_name() == "set_dns_servers")
invoke(this, server_.get(), &Server::set_dns_servers, invocation);
}
void MessageProcessor::process_event_sequence(const std::string&) {