| 348 | |
| 349 | #ifdef HAVE_LIBLO |
| 350 | bool startRemoteServer(const char* const port) override |
| 351 | { |
| 352 | if (fInitializer->remotePluginInstance != nullptr) |
| 353 | return false; |
| 354 | |
| 355 | if (fInitializer->startRemoteServer(port)) |
| 356 | { |
| 357 | fInitializer->remotePluginInstance = this; |
| 358 | return true; |
| 359 | } |
| 360 | |
| 361 | return false; |
| 362 | } |
| 363 | |
| 364 | void stopRemoteServer() override |
| 365 | { |
no test coverage detected