From efcc92b2893221381f9c6931e28f4174e13198f0 Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Thu, 28 Dec 2023 00:47:44 +0100 Subject: [PATCH] Test on windows --- iface/tun_windows.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iface/tun_windows.go b/iface/tun_windows.go index a4ddf1d85..39541a92a 100644 --- a/iface/tun_windows.go +++ b/iface/tun_windows.go @@ -167,5 +167,7 @@ func (c *tunDevice) assignAddr() error { // getUAPI returns a Listener func (c *tunDevice) getUAPI(iface string) (net.Listener, error) { - return ipc.UAPIListen(iface) + l, err := ipc.UAPIListen(iface) + log.Infof("UAPI LISTEN RESULT: %v", err) + return l, err }