| 1597 | } |
| 1598 | |
| 1599 | CNetHandler* CNetMgr::FindNetItem(CNetHandler* key) |
| 1600 | { |
| 1601 | if (NULL == this->_session_hash) |
| 1602 | { |
| 1603 | return NULL; |
| 1604 | } |
| 1605 | |
| 1606 | return (CNetHandler*)_session_hash->HashFind(key); |
| 1607 | } |
| 1608 | |
| 1609 | void CNetMgr::InsertNetItem(CNetHandler* item) |
| 1610 | { |
no test coverage detected