| 5870 | } |
| 5871 | |
| 5872 | inline void ClientImpl::shutdown_socket(Socket &socket) { |
| 5873 | if (socket.sock == INVALID_SOCKET) { return; } |
| 5874 | detail::shutdown_socket(socket.sock); |
| 5875 | } |
| 5876 | |
| 5877 | inline void ClientImpl::close_socket(Socket &socket) { |
| 5878 | // If there are requests in flight in another thread, usually closing |
nothing calls this directly
no test coverage detected