| 192 | } |
| 193 | |
| 194 | void SocketServer::wait() |
| 195 | { |
| 196 | std::unique_lock<std::mutex> lock(_conditionVariableMutex); |
| 197 | _conditionVariable.wait(lock); |
| 198 | } |
| 199 | |
| 200 | void SocketServer::stopAcceptingConnections() |
| 201 | { |
no outgoing calls
no test coverage detected