diff options
author | mathieui <mathieui@mathieui.net> | 2021-01-22 22:04:41 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-01-22 22:04:41 +0100 |
commit | 49577e6c84ef717022884fdc13a13a584a66cf3c (patch) | |
tree | 5582698edb47275ea77deb6aa38a657f5f11a897 | |
parent | b784b68bcdface791f2a6e0e0a5482096b03ee06 (diff) | |
download | slixmpp-49577e6c84ef717022884fdc13a13a584a66cf3c.tar.gz slixmpp-49577e6c84ef717022884fdc13a13a584a66cf3c.tar.bz2 slixmpp-49577e6c84ef717022884fdc13a13a584a66cf3c.tar.xz slixmpp-49577e6c84ef717022884fdc13a13a584a66cf3c.zip |
Handle connection errors in start_tls (fix #3449)
-rw-r--r-- | slixmpp/xmlstream/xmlstream.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/slixmpp/xmlstream/xmlstream.py b/slixmpp/xmlstream/xmlstream.py index dc2af77e..6b890729 100644 --- a/slixmpp/xmlstream/xmlstream.py +++ b/slixmpp/xmlstream/xmlstream.py @@ -622,6 +622,10 @@ class XMLStream(asyncio.BaseProtocol): else: self.event('ssl_invalid_chain', e) return False + except OSError as exc: + log.debug("Connection error:", exc_info=True) + self.disconnect() + return False der_cert = transp.get_extra_info("ssl_object").getpeercert(True) pem_cert = ssl.DER_cert_to_PEM_cert(der_cert) self.event('ssl_cert', pem_cert) |