Fix windows socket PID interface

This commit is contained in:
Daniel 2020-07-14 14:40:36 +02:00
parent 383c019d0c
commit 55978515ab

View file

@ -13,5 +13,5 @@ var (
)
func checkPID(socketInfo socket.Info, connInbound bool) (pid int, inbound bool, err error) {
return socketInfo.PID, connInbound, nil
return socketInfo.GetPID(), connInbound, nil
}