| 8009 | } |
| 8010 | |
| 8011 | inline bool |
| 8012 | ClientImpl::process_socket(const Socket &socket, |
| 8013 | std::function<bool(Stream &strm)> callback) { |
| 8014 | return detail::process_client_socket( |
| 8015 | socket.sock, read_timeout_sec_, read_timeout_usec_, write_timeout_sec_, |
| 8016 | write_timeout_usec_, std::move(callback)); |
| 8017 | } |
| 8018 | |
| 8019 | inline bool ClientImpl::is_ssl() const { return false; } |
| 8020 |
nothing calls this directly
no test coverage detected