Merge pull request #221 from safing/fix/interception-fasttrack-blocks

Fix fast-tracking of the block-IPs
This commit is contained in:
Daniel
2020-12-21 19:18:44 +01:00
committed by GitHub

View File

@@ -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 {