Fix: find process name by UDP network on macOS
This commit is contained in:
parent
13db80b23a
commit
36c61d8074
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ func findProcessName(network string, ip net.IP, port int) (string, error) {
|
|||
continue
|
||||
}
|
||||
|
||||
if !ip.Equal(srcIP) {
|
||||
if !ip.Equal(srcIP) && (network == TCP || !srcIP.IsUnspecified()) {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue