From 40f02ff8eee359dc0ccc898f8da319f56af161ad Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Thu, 4 Jan 2007 15:28:36 +0000 Subject: [PATCH] Tapreader socket should be bound to localhost only. --- src/mingw/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mingw/device.c b/src/mingw/device.c index 004249c..042407a 100644 --- a/src/mingw/device.c +++ b/src/mingw/device.c @@ -143,7 +143,7 @@ bool setup_device(void) .ai_family = AF_UNSPEC, .ai_socktype = SOCK_STREAM, .ai_protocol = IPPROTO_TCP, - .ai_flags = AI_PASSIVE, + .ai_flags = 0, }; cp(); -- 2.25.1