| 1634 | } |
| 1635 | |
| 1636 | CDestLinks* CNetMgr::FindDestLink(CDestLinks* key) |
| 1637 | { |
| 1638 | if (NULL == this->_ip_hash) |
| 1639 | { |
| 1640 | return NULL; |
| 1641 | } |
| 1642 | |
| 1643 | return (CDestLinks*)_ip_hash->HashFind(key); |
| 1644 | } |
| 1645 | |
| 1646 | void CNetMgr::InsertDestLink(CDestLinks* item) |
| 1647 | { |
no test coverage detected