| 1081 | |
| 1082 | |
| 1083 | Try<Nothing> client_configure_socket( |
| 1084 | SSL* ssl, |
| 1085 | const Address& peer, |
| 1086 | const Option<std::string>& peer_hostname) |
| 1087 | { |
| 1088 | return configure_socket(ssl, Mode::CLIENT, peer, peer_hostname); |
| 1089 | } |
| 1090 | |
| 1091 | |
| 1092 | TLSClientConfig::TLSClientConfig( |
nothing calls this directly
no test coverage detected