| 601 | } |
| 602 | |
| 603 | dmSocket::Socket GetSocket(HPool pool, HConnection connection) |
| 604 | { |
| 605 | DM_MUTEX_SCOPED_LOCK(pool->m_Mutex); |
| 606 | |
| 607 | Connection* c = GetConnection(pool, connection); |
| 608 | assert(c->m_State == STATE_INUSE); |
| 609 | return c->m_Socket; |
| 610 | } |
| 611 | |
| 612 | dmSSLSocket::Socket GetSSLSocket(HPool pool, HConnection connection) |
| 613 | { |
nothing calls this directly
no test coverage detected