Update windows interface to match the linux one

This commit is contained in:
Daniel 2020-07-12 22:22:52 +02:00
parent 834d2e326c
commit 73da96fe98

View file

@ -12,10 +12,6 @@ var (
getUDP6Table = iphelper.GetUDP6Table
)
func checkConnectionPID(socketInfo *socket.ConnectionInfo, connInbound bool) (pid int, inbound bool, err error) {
return socketInfo.PID, connInbound, nil
}
func checkBindPID(socketInfo *socket.BindInfo, connInbound bool) (pid int, inbound bool, err error) {
func checkPID(socketInfo socket.Info, connInbound bool) (pid int, inbound bool, err error) {
return socketInfo.PID, connInbound, nil
}