12 lines
204 B
Go
12 lines
204 B
Go
package interception
|
|
|
|
// start starts the interception.
|
|
func start() error {
|
|
return StartNfqueueInterception()
|
|
}
|
|
|
|
// stop starts the interception.
|
|
func stop() error {
|
|
return StopNfqueueInterception()
|
|
}
|