Fix: find process name by UDP network on macOS

This commit is contained in:
yaling888 2022-02-23 14:04:47 +08:00
parent 2f234cf6bc
commit 592b6a785e

View file

@ -70,7 +70,7 @@ func findProcessName(network string, ip net.IP, port int) (string, error) {
continue continue
} }
if !ip.Equal(srcIP) { if !ip.Equal(srcIP) && (network == TCP || !srcIP.IsUnspecified()) {
continue continue
} }