| 1644 | } |
| 1645 | |
| 1646 | void CNetMgr::InsertDestLink(CDestLinks* item) |
| 1647 | { |
| 1648 | if (NULL == this->_ip_hash) |
| 1649 | { |
| 1650 | return; |
| 1651 | } |
| 1652 | |
| 1653 | int32_t ret = _ip_hash->HashInsert(item); |
| 1654 | if (ret < 0) |
| 1655 | { |
| 1656 | MTLOG_ERROR("ip dest insert failed, ret %d", ret); |
| 1657 | } |
| 1658 | |
| 1659 | return; |
| 1660 | } |
| 1661 | |
| 1662 | void CNetMgr::RemoveDestLink(CDestLinks* item) |
| 1663 | { |
no test coverage detected