You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jv...@apache.org on 2011/09/23 10:27:34 UTC

svn commit: r1174584 - /mina/trunk/http/src/main/java/org/apache/mina/http/HttpServerCodec.java

Author: jvermillard
Date: Fri Sep 23 08:27:33 2011
New Revision: 1174584

URL: http://svn.apache.org/viewvc?rev=1174584&view=rev
Log:
session close for HTTP is at the charge of the client (we need to check idleness soon..)

Modified:
    mina/trunk/http/src/main/java/org/apache/mina/http/HttpServerCodec.java

Modified: mina/trunk/http/src/main/java/org/apache/mina/http/HttpServerCodec.java
URL: http://svn.apache.org/viewvc/mina/trunk/http/src/main/java/org/apache/mina/http/HttpServerCodec.java?rev=1174584&r1=1174583&r2=1174584&view=diff
==============================================================================
--- mina/trunk/http/src/main/java/org/apache/mina/http/HttpServerCodec.java (original)
+++ mina/trunk/http/src/main/java/org/apache/mina/http/HttpServerCodec.java Fri Sep 23 08:27:33 2011
@@ -166,7 +166,6 @@ public class HttpServerCodec implements 
         } else if (message instanceof HttpEndOfContent) {
             // end of HTTP content
             // keep alive ?
-            session.close(false);
         }
     }