Merge branch 'develop' into feature/query

This commit is contained in:
Daniel
2022-07-14 13:53:25 +02:00
committed by GitHub
31 changed files with 1252 additions and 263 deletions

View File

@@ -60,7 +60,7 @@ func Lookup(pktInfo *packet.Info, fast bool) (pid int, inbound bool, err error)
return udp6Table.lookup(pktInfo, fast)
default:
return socket.UndefinedProcessID, false, errors.New("unsupported protocol for finding process")
return socket.UndefinedProcessID, pktInfo.Inbound, errors.New("unsupported protocol for finding process")
}
}