hgomez      2003/10/09 03:08:43

  Modified:    jk/java/org/apache/ajp/tomcat4 Ajp13Connector.java
  Log:
  Remote setKeepAlive (set by the native side).
  
  Fix #23675
  
  Revision  Changes    Path
  1.19      +10 -5     
jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat4/Ajp13Connector.java
  
  Index: Ajp13Connector.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/ajp/tomcat4/Ajp13Connector.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Ajp13Connector.java       18 Sep 2003 16:21:01 -0000      1.18
  +++ Ajp13Connector.java       9 Oct 2003 10:08:43 -0000       1.19
  @@ -888,7 +888,12 @@
                   else 
                        socket.setSoLinger(true, connectionLinger);
                        
  -                socket.setKeepAlive(true);
  +                /* We don't need it since it's the native side which 
  +                 * will set the connection with keep alive
  +                 * if specified in workers.properties.
  +                 * 
  +                 * socket.setKeepAlive(true); 
  +                 */
                   
                   /* Warning :
                    * 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to