diff --git a/firewall/interception/interception_default.go b/firewall/interception/interception_default.go index 0ba5e1c3..f6166c77 100644 --- a/firewall/interception/interception_default.go +++ b/firewall/interception/interception_default.go @@ -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 +}