mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
21 lines
587 B
Go
21 lines
587 B
Go
package state
|
|
|
|
import (
|
|
"github.com/safing/portmaster/network/iphelper"
|
|
"github.com/safing/portmaster/network/socket"
|
|
)
|
|
|
|
var (
|
|
getTCP4Table = iphelper.GetTCP4Table
|
|
getTCP6Table = iphelper.GetTCP6Table
|
|
getUDP4Table = iphelper.GetUDP4Table
|
|
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) {
|
|
return socketInfo.PID, connInbound, nil
|
|
}
|