From 68b6649a76a38d16b7432228f4796d88d151607e Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 21 Dec 2020 14:54:10 +0100 Subject: [PATCH] Fix fast-tracking of the block-IPs --- firewall/interception.go | 1 + 1 file changed, 1 insertion(+) diff --git a/firewall/interception.go b/firewall/interception.go index 55281a48..fd8a6887 100644 --- a/firewall/interception.go +++ b/firewall/interception.go @@ -93,6 +93,7 @@ func fastTrackedPermit(pkt packet.Packet) (handled bool) { // Check for blocked IP if meta.Dst.Equal(blockedIPv4) || meta.Dst.Equal(blockedIPv6) { _ = pkt.PermanentBlock() + return true } switch meta.Protocol {