| 7376 | } |
| 7377 | |
| 7378 | inline bool |
| 7379 | ClientImpl::process_socket(const Socket &socket, |
| 7380 | std::function<bool(Stream &strm)> callback) { |
| 7381 | return detail::process_client_socket( |
| 7382 | socket.sock, read_timeout_sec_, read_timeout_usec_, write_timeout_sec_, |
| 7383 | write_timeout_usec_, std::move(callback)); |
| 7384 | } |
| 7385 | |
| 7386 | inline bool ClientImpl::is_ssl() const { return false; } |
| 7387 |
nothing calls this directly
no test coverage detected