| 113 | } |
| 114 | |
| 115 | void UdpSessionNtfy::CloseSocket() |
| 116 | { |
| 117 | int osfd = this->GetOsfd(); |
| 118 | if (osfd > 0) |
| 119 | { |
| 120 | MtFrame* frame = MtFrame::Instance(); |
| 121 | frame->KqueueCtrlDel(osfd, KQ_EVENT_READ); |
| 122 | frame->KqueueNtfyReg(osfd, NULL); |
| 123 | this->DisableInput(); |
| 124 | this->SetOsfd(-1); |
| 125 | close(osfd); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | int UdpSessionNtfy::InputNotify() |
| 130 | { |
nothing calls this directly
no test coverage detected