| 6482 | } |
| 6483 | |
| 6484 | inline bool |
| 6485 | ClientImpl::process_socket(const Socket &socket, |
| 6486 | std::function<bool(Stream &strm)> callback) { |
| 6487 | return detail::process_client_socket( |
| 6488 | socket.sock, read_timeout_sec_, read_timeout_usec_, write_timeout_sec_, |
| 6489 | write_timeout_usec_, std::move(callback)); |
| 6490 | } |
| 6491 | |
| 6492 | inline bool ClientImpl::is_ssl() const { return false; } |
| 6493 |
nothing calls this directly
no test coverage detected