You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by la...@apache.org on 2002/03/12 05:03:12 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server PoolTcpConnector.java

larryi      02/03/11 20:03:12

  Modified:    src/share/org/apache/tomcat/modules/server
                        PoolTcpConnector.java
  Log:
  Update checkSocketFactory() to set the module socketFactory when
  obtaining an SSL socket factory, rather than using a local variable.  This
  allows the PasswordPrompter add-on to work with the PureTLS updates.
  
  Revision  Changes    Path
  1.15      +1 -1      jakarta-tomcat/src/share/org/apache/tomcat/modules/server/PoolTcpConnector.java
  
  Index: PoolTcpConnector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/PoolTcpConnector.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- PoolTcpConnector.java	25 Jan 2002 04:03:27 -0000	1.14
  +++ PoolTcpConnector.java	12 Mar 2002 04:03:12 -0000	1.15
  @@ -195,7 +195,7 @@
    		// provide a wide enough interface
    		sslImplementation=SSLImplementation.getInstance
    		    (sslImplementationName);
  -                ServerSocketFactory socketFactory = 
  +                socketFactory = 
                           sslImplementation.getServerSocketFactory();
                   if( socketFactory!=null ) {
                       Enumeration attE=attributes.keys();
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>