summaryrefslogtreecommitdiffstats
path: root/fingerchange.py
diff options
context:
space:
mode:
Diffstat (limited to 'fingerchange.py')
-rwxr-xr-xfingerchange.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fingerchange.py b/fingerchange.py
index 18410fb..83419a1 100755
--- a/fingerchange.py
+++ b/fingerchange.py
@@ -142,7 +142,7 @@ def handle_client(reader, writer):
loop = asyncio.get_event_loop()
-coro = asyncio.start_server(handle_client, host='127.0.0.1', port=79, loop=loop)
+coro = asyncio.start_server(handle_client, host='0.0.0.0', port=79, loop=loop)
server = loop.run_until_complete(coro)
try: