From 7c4e7430d0c35cd325722f52735f79bcbc3022f8 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Sun, 21 Jun 2015 13:40:20 +0100 Subject: Don't only run on localhost MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- fingerchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3-54-g00ecf