Author: remm
Date: Tue Oct  6 15:19:08 2015
New Revision: 1707072

URL: http://svn.apache.org/viewvc?rev=1707072&view=rev
Log:
- Add a (large) TODO for OpenSSL configuration.
- Remove unused log field.

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/net/AbstractJsseEndpoint.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/AbstractJsseEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/AbstractJsseEndpoint.java?rev=1707072&r1=1707071&r2=1707072&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/AbstractJsseEndpoint.java 
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/AbstractJsseEndpoint.java Tue 
Oct  6 15:19:08 2015
@@ -35,8 +35,6 @@ import org.apache.tomcat.util.net.openss
 
 public abstract class AbstractJsseEndpoint<S> extends AbstractEndpoint<S> {
 
-    private static final Log log = 
LogFactory.getLog(AbstractJsseEndpoint.class);
-
     private String sslImplementationName = null;
     private int sniParseLimit = 64 * 1024;
 
@@ -70,6 +68,8 @@ public abstract class AbstractJsseEndpoi
 
     @Override
     protected Type getSslConfigType() {
+        // TODO: Add configuration to allow the OpenSSLImplementation to 
optionally use the JSSE configuration
+        // (it should still default to OpenSSL style since it is the most 
logical and straightforward)
         if 
(OpenSSLImplementation.IMPLEMENTATION_NAME.equals(sslImplementationName)) {
             return SSLHostConfig.Type.OPENSSL;
         } else {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to