| 1660 | } |
| 1661 | |
| 1662 | void CNetMgr::RemoveDestLink(CDestLinks* item) |
| 1663 | { |
| 1664 | CDestLinks* handler = this->FindDestLink(item); |
| 1665 | if (NULL == handler) |
| 1666 | { |
| 1667 | return; |
| 1668 | } |
| 1669 | |
| 1670 | _ip_hash->HashRemove(handler); |
| 1671 | } |
| 1672 | |
| 1673 | CDestLinks* CNetMgr::FindCreateDest(CDestLinks* key) |
| 1674 | { |
no test coverage detected