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 {