no message

peske/elnotfound
Aleksandar Pesic 2021-02-04 12:46:48 +01:00
parent e1e8808290
commit 178d020e77
1 changed files with 2 additions and 0 deletions

View File

@ -711,6 +711,8 @@ func getIpInterfaceFallback(luid winipcfg.LUID, family winipcfg.AddressFamily) (
log.Printf("getIpInterfaceFallback(%v, %v): luid.Interface() error: %v\n", luid, family, err)
} else if ifc == nil {
log.Printf("getIpInterfaceFallback(%v, %v): luid.Interface() returned nil.\n", luid, family)
} else {
log.Printf("getIpInterfaceFallback(%v, %v): luid.Interface() returned:\n%v", luid, family, ifc)
}
im := make(map[winipcfg.LUID]string)
ifs, err := winipcfg.GetIfTable2Ex(winipcfg.MibIfEntryNormal)