From cbeb2414359ca801e1806f874929a86309d07bdf Mon Sep 17 00:00:00 2001 From: Japa Date: Mon, 2 Oct 2017 20:48:05 +0530 Subject: [PATCH] Listen on any address --- library/RemoteServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/RemoteServer.cpp b/library/RemoteServer.cpp index 699176549..f27bb36ee 100644 --- a/library/RemoteServer.cpp +++ b/library/RemoteServer.cpp @@ -379,7 +379,7 @@ bool ServerMain::listen(int port) socket->Initialize(); - if (!socket->Listen("127.0.0.1", port)) + if (!socket->Listen(NULL, port)) return false; thread = new tthread::thread(threadFn, this);