mirror of
https://github.com/safing/portmaster
synced 2025-09-02 18:49:14 +00:00
13 lines
281 B
Go
13 lines
281 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()
|
|
}
|