| 6298 | } |
| 6299 | |
| 6300 | inline void ClientImpl::shutdown_socket(Socket &socket) { |
| 6301 | if (socket.sock == INVALID_SOCKET) { return; } |
| 6302 | detail::shutdown_socket(socket.sock); |
| 6303 | } |
| 6304 | |
| 6305 | inline void ClientImpl::close_socket(Socket &socket) { |
| 6306 | // If there are requests in flight in another thread, usually closing |
nothing calls this directly
no test coverage detected