aboutsummaryrefslogtreecommitdiffstats
path: root/util/ip.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/ip.lua')
-rw-r--r--util/ip.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ip.lua b/util/ip.lua
index b65f6b6e..9575e499 100644
--- a/util/ip.lua
+++ b/util/ip.lua
@@ -228,7 +228,7 @@ local function parse_cidr(cidr)
end
function match(ipA, ipB, bits)
- if not bits then
+ if not bits or bits >= 128 or ipB.proto == "IPv4" and bits >= 32 then
return ipA == ipB;
elseif bits < 1 then
return true;