Giampaolo Rodola' <billiej...@users.sourceforge.net> added the comment:

def handle_error(self):
-            raise
+            # Ignore errors while closing, because the remote end could have
+            # abruptly shut down the TCP connection while we are still
+            # waiting for SSL shutdown to finish.
+            if not self._ssl_closing:
+                raise


I don't like this.
I should have said that I think my original patch is wrong as it attempts to 
shutdown() the SSL layer in asyncore's close() method.
I think that I should have done that in handle_close() instead of close() 
because the two methods are called in different circumstances and have 
different meanings:

- handle_close() is supposed to be called when the connection is a about to be 
closed "in a clean way" (for example: the other end properly finished to 
transmit all the data).

- close() may be called in different situations, also when the connection gets 
closed abruptly. In this case we should avoid to shutdown() the SSL layer as we 
might be dealing with a "dead" connection. The right thing to do in this case 
is just close() the socket without doing anything else.

IMHO, what we should try to avoid to do here is silently ignoring any error 
condition as you did in handle_error() method.
What happens if you move the SSL shutdown() call in handle_close() method and 
leave handle_error() unchanged?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8108>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to