safing-portmaster/firewall/interception/interception_linux.go
2020-10-01 16:27:19 +02:00

13 lines
281 B
Go

package interception
import "github.com/safing/portmaster/network/packet"
// start starts the interception.
func start(ch chan packet.Packet) error {
return StartNfqueueInterception(ch)
}
// stop starts the interception.
func stop() error {
return StopNfqueueInterception()
}