| 65 | } |
| 66 | |
| 67 | void NetworkClient::Terminate(NetworkProtocol protocol, const NetworkInterface *iface) noexcept |
| 68 | { |
| 69 | if ((HandlesProtocol(protocol) || protocol == AnyProtocol) && (skt && skt->GetInterface() == iface)) |
| 70 | { |
| 71 | Terminate(); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | bool NetworkClient::Start(NetworkInterface* interface) noexcept |
| 76 | { |
nothing calls this directly
no test coverage detected