You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2021/04/16 23:43:57 UTC

[trafficserver] branch master updated: Fix ALPN support on QUIC connections (#7593)

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f9594f  Fix ALPN support on QUIC connections (#7593)
9f9594f is described below

commit 9f9594fd34275263cf3a9f47f643c14144dc8f6c
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Sat Apr 17 08:43:41 2021 +0900

    Fix ALPN support on QUIC connections (#7593)
    
    The change for QUICNetVC on PR #7555 was not enough.
---
 iocore/net/QUICNetVConnection.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/QUICNetVConnection.cc b/iocore/net/QUICNetVConnection.cc
index 51cf89f..0264fd3 100644
--- a/iocore/net/QUICNetVConnection.cc
+++ b/iocore/net/QUICNetVConnection.cc
@@ -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;
 }