From 244d076cab8d3c0495eda2f3b7fb21631c67e47f Mon Sep 17 00:00:00 2001 From: TheKysek Date: Fri, 9 Jun 2017 21:06:29 +0200 Subject: [PATCH] Fix TLS handshake failure --- minode/listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minode/listener.py b/minode/listener.py index 4e6ada6..3cf568f 100644 --- a/minode/listener.py +++ b/minode/listener.py @@ -31,7 +31,7 @@ class Listener(threading.Thread): if len(shared.connections) > shared.connection_limit: conn.close() else: - c = Connection(addr[0], addr[1], conn, True) + c = Connection(addr[0], addr[1], conn, 'ip', True) c.start() shared.connections.add(c) except socket.timeout: