mirror of
https://github.com/safing/portmaster
synced 2025-09-02 10:39:22 +00:00
24 lines
594 B
Go
24 lines
594 B
Go
//go:build !windows && !linux
|
|
|
|
package interception
|
|
|
|
import (
|
|
"github.com/safing/portbase/log"
|
|
"github.com/safing/portmaster/network/packet"
|
|
)
|
|
|
|
// start starts the interception.
|
|
func start(_ chan packet.Packet) error {
|
|
log.Critical("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
|
|
}
|
|
|
|
// ResetVerdictOfAllConnections resets all connections so they are forced to go thought the firewall again.
|
|
func ResetVerdictOfAllConnections() error {
|
|
return nil
|
|
}
|