Files
portmaster/firewall/interception/interception_linux.go
2020-07-22 09:35:58 +02:00

12 lines
204 B
Go

package interception
// start starts the interception.
func start() error {
return StartNfqueueInterception()
}
// stop starts the interception.
func stop() error {
return StopNfqueueInterception()
}