You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2005/08/14 16:34:38 UTC

svn commit: r232614 - /webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/server/SimpleHttpServerConnection.java

Author: dims
Date: Sun Aug 14 07:34:36 2005
New Revision: 232614

URL: http://svn.apache.org/viewcvs?rev=232614&view=rev
Log:
linger for 2 seconds


Modified:
    webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/server/SimpleHttpServerConnection.java

Modified: webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/server/SimpleHttpServerConnection.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/server/SimpleHttpServerConnection.java?rev=232614&r1=232613&r2=232614&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/server/SimpleHttpServerConnection.java (original)
+++ webservices/axis/trunk/java/modules/core/src/org/apache/axis2/transport/http/server/SimpleHttpServerConnection.java Sun Aug 14 07:34:36 2005
@@ -64,7 +64,7 @@
             throw new IllegalArgumentException("Socket may not be null");
         }
         this.socket = socket;
-        this.socket.setSoLinger(false, 0);
+        this.socket.setSoLinger(true, 2);
         this.socket.setKeepAlive(true);
         this.socket.setSoTimeout(60000);
         this.socket.setTcpNoDelay(true);