Commit 2e423ee2 authored by Sam Rushing's avatar Sam Rushing

tlslite_server.accept(): oops, if we disable the exception there's no need to catch it.

parent 10d3d881
...@@ -531,12 +531,8 @@ class tlslite_server (server): ...@@ -531,12 +531,8 @@ class tlslite_server (server):
conn0, addr = server.accept (self) conn0, addr = server.accept (self)
conn = tlslite.TLSConnection (conn0) conn = tlslite.TLSConnection (conn0)
conn.ignoreAbruptClose = True conn.ignoreAbruptClose = True
try: conn.handshakeServer (certChain=self.chain, privateKey=self.private, **self.handshake_args)
conn.handshakeServer (certChain=self.chain, privateKey=self.private, **self.handshake_args) return conn, addr
except tlslite.errors.TLSAbruptCloseError:
self.log ('TLSAbruptCloseError: %r' % (addr,))
else:
return conn, addr
def read_chain (self): def read_chain (self):
"cert chain is all in one file, in LEAF -> ROOT order" "cert chain is all in one file, in LEAF -> ROOT order"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment