mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.ip: Add 'private' method/property to determine whether an IP address is generally expected to be internet-routeable (YMMV)
This commit is contained in:
parent
4d630bbd3c
commit
e082db3cf7
1 changed files with 15 additions and 0 deletions
15
util/ip.lua
15
util/ip.lua
|
@ -193,5 +193,20 @@ function ip_methods:scope()
|
|||
return value;
|
||||
end
|
||||
|
||||
function ip_methods:private()
|
||||
local private = self.scope ~= 0xE;
|
||||
if not private and self.proto == "IPv4" then
|
||||
local ip = self.addr;
|
||||
local fields = {};
|
||||
ip:gsub("([^.]*).?", function (c) fields[#fields + 1] = tonumber(c) end);
|
||||
if fields[1] == 127 or fields[1] == 10 or (fields[1] == 192 and fields[2] == 168)
|
||||
or (fields[1] == 172 and (fields[2] >= 16 or fields[2] <= 32)) then
|
||||
private = true;
|
||||
end
|
||||
end
|
||||
self.private = private;
|
||||
return private;
|
||||
end
|
||||
|
||||
return {new_ip = new_ip,
|
||||
commonPrefixLength = commonPrefixLength};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue