Fix darwin build

This commit is contained in:
Daniel 2022-10-10 16:56:00 +02:00
parent e5d8e33790
commit e1e6a40498

View file

@ -1,4 +1,4 @@
//+build !windows,!linux
//go:build !windows && !linux
package interception
@ -17,3 +17,8 @@ func start(_ chan packet.Packet) error {
func stop() error {
return nil
}
// ResetVerdictOfAllConnections resets all connections so they are forced to go thought the firewall again.
func ResetVerdictOfAllConnections() error {
return nil
}