From ec45f36ae02ee46869a299296ea218b0bfac37fe Mon Sep 17 00:00:00 2001 From: Mostafa Samir Date: Fri, 1 Apr 2016 22:03:52 +0200 Subject: [PATCH] updated comment by removing mention of windows any syetem that has it first network interface on ipv6 will also fail if udp4 was bound on it, not just windows --- services/IPC.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/IPC.js b/services/IPC.js index 5adcf8d..fdce1e9 100644 --- a/services/IPC.js +++ b/services/IPC.js @@ -204,7 +204,7 @@ function serveNet(host,port,UDPType,callback){ if(UDPType){ this.server[UDPType]=true; if(UDPType === "udp4" && host === "::1") { - // bind udp4 socket to an ipv4 address to avoid failing on windows + // bind udp4 socket to an ipv4 address this.server.path = "127.0.0.1"; } }