This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 8223f1a551 Add OpenSSL FFM listener to the config, commented out 8223f1a551 is described below commit 8223f1a5511f67b3120c0eb5a83a0e6b56966d94 Author: remm <r...@apache.org> AuthorDate: Fri Mar 22 13:17:59 2024 +0100 Add OpenSSL FFM listener to the config, commented out --- conf/server.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/conf/server.xml b/conf/server.xml index fc720ce70b..2beafa4a83 100644 --- a/conf/server.xml +++ b/conf/server.xml @@ -24,8 +24,10 @@ <!-- Security listener. Documentation at /docs/config/listeners.html <Listener className="org.apache.catalina.security.SecurityListener" /> --> - <!-- APR library loader. Documentation at /docs/apr.html --> - <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> + <!-- OpenSSL support using Tomcat Native --> + <Listener className="org.apache.catalina.core.AprLifecycleListener" /> + <!-- OpenSSL support using FFM API from Java 22 --> + <!-- <Listener className="org.apache.catalina.core.OpenSSLLifecycleListener" /> --> <!-- Prevent memory leaks due to use of particular java/javax APIs--> <Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" /> <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org