Author: markt
Date: Tue Sep 20 17:08:41 2011
New Revision: 1173256

URL: http://svn.apache.org/viewvc?rev=1173256&view=rev
Log:
Ensure that when the connector is stopped that a Comet END event is processed 
to signal to the app and to close the socket

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

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1173256&r1=1173255&r2=1173256&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Tue Sep 20 
17:08:41 2011
@@ -1160,7 +1160,7 @@ public class NioEndpoint extends Abstrac
             boolean result = true;
             try {
                 if ( close ) {
-                    cancelledKey(sk, SocketStatus.STOP, false);
+                    cancelledKey(sk, SocketStatus.STOP, attachment.comet);
                 } else if ( sk.isValid() && attachment != null ) {
                     attachment.access();//make sure we don't time out valid 
sockets
                     sk.attach(attachment);//cant remember why this is here



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

Reply via email to