| 1623 | } |
| 1624 | |
| 1625 | void CNetMgr::RemoveNetItem(CNetHandler* item) |
| 1626 | { |
| 1627 | CNetHandler* handler = this->FindNetItem(item); |
| 1628 | if (NULL == handler) |
| 1629 | { |
| 1630 | return; |
| 1631 | } |
| 1632 | |
| 1633 | _session_hash->HashRemove(handler); |
| 1634 | } |
| 1635 | |
| 1636 | CDestLinks* CNetMgr::FindDestLink(CDestLinks* key) |
| 1637 | { |
no test coverage detected