| 263 | } |
| 264 | |
| 265 | static void UnpublishInProgressSocket(HPool pool, Connection* connection, dmSocket::Socket socket) |
| 266 | { |
| 267 | DM_MUTEX_SCOPED_LOCK(pool->m_Mutex); |
| 268 | if (connection->m_Socket == socket) |
| 269 | { |
| 270 | connection->m_Socket = dmSocket::INVALID_SOCKET_HANDLE; |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | static void CloseInProgressSocket(HPool pool, Connection* connection, dmSocket::Socket* socket) |
| 275 | { |
no outgoing calls
no test coverage detected