| 592 | } |
| 593 | |
| 594 | void Close(HPool pool, HConnection connection) |
| 595 | { |
| 596 | DM_MUTEX_SCOPED_LOCK(pool->m_Mutex); |
| 597 | |
| 598 | Connection* c = GetConnection(pool, connection); |
| 599 | assert(c->m_State == STATE_INUSE); |
| 600 | DoClose(pool, c); |
| 601 | } |
| 602 | |
| 603 | dmSocket::Socket GetSocket(HPool pool, HConnection connection) |
| 604 | { |
nothing calls this directly
no test coverage detected