| 687 | } |
| 688 | |
| 689 | void CSockLink::RemoveFromList(int32_t type, CNetHandler* item) |
| 690 | { |
| 691 | TNetItemList* list = this->GetItemList(type); |
| 692 | if (NULL == list) |
| 693 | { |
| 694 | MTLOG_ERROR("unknown list type: %d", type); |
| 695 | return; |
| 696 | } |
| 697 | |
| 698 | TAILQ_REMOVE(list, item, _link_entry); |
| 699 | } |
| 700 | |
| 701 | void CSockLink::NotifyThread(CNetHandler* item, int32_t result) |
| 702 | { |