mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.ip: Add missing netmask for 192.168/16 range (fixes #1343)
This commit is contained in:
parent
94880142e9
commit
86b34563eb
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ local rfc6598 = new_ip("100.64.0.0");
|
|||
function ip_methods:private()
|
||||
local private = self.scope ~= 0xE;
|
||||
if not private and self.proto == "IPv4" then
|
||||
return match(self, rfc1918_8, 8) or match(self, rfc1918_12, 12) or match(self, rfc1918_16) or match(self, rfc6598, 10);
|
||||
return match(self, rfc1918_8, 8) or match(self, rfc1918_12, 12) or match(self, rfc1918_16, 16) or match(self, rfc6598, 10);
|
||||
end
|
||||
return private;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue