Remove loopback for tcp

This commit is contained in:
Marwan Sulaiman 2023-05-02 15:32:15 -04:00
parent 7a530173bd
commit 98a708c099

View File

@ -99,10 +99,6 @@ func appendParsePortsNetstat(base []Port, br *bufio.Reader) ([]Port, error) {
// not interested in non-listener sockets
continue
}
if isLoopbackAddr(laddr) {
// not interested in loopback-bound listeners
continue
}
} else if mem.HasPrefixFold(protos, mem.S("udp")) {
if len(cols) < 3 {
continue