This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 2bd79f033d Add OpenSSL FFM listener to the config, commented out 2bd79f033d is described below commit 2bd79f033d8014a9cd3d9d6b743b2f786353cd07 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 72bda52c93..a5331fd048 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