From e1e6a40498e7438abbe9812d8f93de0a51112af1 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 10 Oct 2022 16:56:00 +0200 Subject: [PATCH] Fix darwin build --- firewall/interception/interception_default.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 +}