nghttp: Fix ktls support
This commit is contained in:
parent
1ce55d23a3
commit
7858997c8f
|
@ -677,7 +677,6 @@ int HttpClient::initiate_connection() {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
SSL_set_fd(ssl, fd);
|
|
||||||
SSL_set_connect_state(ssl);
|
SSL_set_connect_state(ssl);
|
||||||
|
|
||||||
// If the user overrode the :authority or host header, use that
|
// If the user overrode the :authority or host header, use that
|
||||||
|
@ -878,6 +877,8 @@ int HttpClient::connected() {
|
||||||
ev_timer_stop(loop, &wt);
|
ev_timer_stop(loop, &wt);
|
||||||
|
|
||||||
if (ssl) {
|
if (ssl) {
|
||||||
|
SSL_set_fd(ssl, fd);
|
||||||
|
|
||||||
readfn = &HttpClient::tls_handshake;
|
readfn = &HttpClient::tls_handshake;
|
||||||
writefn = &HttpClient::tls_handshake;
|
writefn = &HttpClient::tls_handshake;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue