mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
11 lines
204 B
Go
11 lines
204 B
Go
package interception
|
|
|
|
// start starts the interception.
|
|
func start() error {
|
|
return StartNfqueueInterception()
|
|
}
|
|
|
|
// stop starts the interception.
|
|
func stop() error {
|
|
return StopNfqueueInterception()
|
|
}
|