safing-portmaster/firewall/interception/interception_linux.go
2022-10-10 13:34:00 +02:00

15 lines
286 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()
}