nghttp: Fix ktls support

This commit is contained in:
Tatsuhiro Tsujikawa 2022-05-08 11:07:33 +09:00
parent 1ce55d23a3
commit 7858997c8f
1 changed files with 2 additions and 1 deletions

View File

@ -677,7 +677,6 @@ int HttpClient::initiate_connection() {
return -1;
}
SSL_set_fd(ssl, fd);
SSL_set_connect_state(ssl);
// If the user overrode the :authority or host header, use that
@ -878,6 +877,8 @@ int HttpClient::connected() {
ev_timer_stop(loop, &wt);
if (ssl) {
SSL_set_fd(ssl, fd);
readfn = &HttpClient::tls_handshake;
writefn = &HttpClient::tls_handshake;