mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
18 lines
372 B
Go
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
|
|
}
|