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 2022/07/06 22:23:58 UTC

[trafficserver] branch master updated: Initialize TLSTunnelSupport on startup (#8932)

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 33e34b947 Initialize TLSTunnelSupport on startup (#8932)
33e34b947 is described below

commit 33e34b947c664b7824eaac5be7ffcf4572d594b7
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Thu Jul 7 07:23:50 2022 +0900

    Initialize TLSTunnelSupport on startup (#8932)
---
 iocore/net/SSLUtils.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc
index 9f2180505..0b53963e1 100644
--- a/iocore/net/SSLUtils.cc
+++ b/iocore/net/SSLUtils.cc
@@ -1017,6 +1017,7 @@ SSLInitializeLibrary()
   TLSSessionResumptionSupport::initialize();
   TLSSNISupport::initialize();
   TLSEarlyDataSupport::initialize();
+  TLSTunnelSupport::initialize();
 
   open_ssl_initialized = true;
 }