| 140 | } |
| 141 | |
| 142 | void disconnectFromRemote(RemoteDetails* const remote) |
| 143 | { |
| 144 | if (remote != nullptr) |
| 145 | { |
| 146 | #ifdef HAVE_LIBLO |
| 147 | lo_server_free(static_cast<lo_server>(remote->handle)); |
| 148 | #endif |
| 149 | std::free(const_cast<char*>(remote->url)); |
| 150 | delete remote; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | void idleRemote(RemoteDetails* const remote) |
| 155 | { |
no outgoing calls
no test coverage detected