Skip to content

Commit

Permalink
Fix ALPN support on QUIC connections (#7593)
Browse files Browse the repository at this point in the history
The change for QUICNetVC on PR #7555 was not enough.
  • Loading branch information
maskit committed Apr 16, 2021
1 parent 221878d commit 9f9594f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions iocore/net/QUICNetVConnection.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2297,6 +2297,7 @@ QUICNetVConnection::_setup_handshake_protocol(const shared_SSL_CTX &ctx)
this->_quic_config->client_session_file(), this->_quic_config->client_keylog_file());
SSL_set_ex_data(tls->ssl_handle(), QUIC::ssl_quic_qc_index, static_cast<QUICConnection *>(this));
TLSSessionResumptionSupport::bind(tls->ssl_handle(), this);
ALPNSupport::bind(tls->ssl_handle(), this);

return tls;
}
Expand Down

0 comments on commit 9f9594f

Please sign in to comment.