|
@ -266,8 +266,10 @@ class TcpInterface(threading.Thread): |
|
|
return |
|
|
return |
|
|
print_error("wrong certificate", self.host) |
|
|
print_error("wrong certificate", self.host) |
|
|
return |
|
|
return |
|
|
except BaseException: |
|
|
except BaseException, e: |
|
|
print_error("wrap_socket failed", self.host) |
|
|
print_error(self.host, e) |
|
|
|
|
|
if e.errno == 104: |
|
|
|
|
|
return |
|
|
traceback.print_exc(file=sys.stderr) |
|
|
traceback.print_exc(file=sys.stderr) |
|
|
return |
|
|
return |
|
|
|
|
|
|
|
|