Compare commits

...

1 Commits

Author SHA1 Message Date
Zoltan Papp
efcc92b289 Test on windows 2023-12-28 00:47:44 +01:00

View File

@@ -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
}