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

18 lines
372 B
Go

//+build !windows,!linux
package interception
import (
"github.com/safing/portbase/log"
)
// start starts the interception.
func start(ch chan packet.Packet) error {
log.Info("interception: this platform has no support for packet interception - a lot of functionality will be broken")
return nil
}
// stop starts the interception.
func stop() error {
return nil
}