mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.ip: Add ip.truncate() to return a new IP with only the prefix of another
This commit is contained in:
parent
3eedf79c8b
commit
84c0204ea2
1 changed files with 12 additions and 0 deletions
12
util/ip.lua
12
util/ip.lua
|
@ -245,10 +245,22 @@ local function is_ip(obj)
|
|||
return getmetatable(obj) == ip_mt;
|
||||
end
|
||||
|
||||
local function truncate(ip, n_bits)
|
||||
if n_bits % 8 ~= 0 then
|
||||
return error("ip.truncate() only supports multiples of 8 bits");
|
||||
end
|
||||
local n_octets = n_bits / 8;
|
||||
if not is_ip(ip) then
|
||||
ip = new_ip(ip);
|
||||
end
|
||||
return new_ip(net.ntop(ip.packed:sub(1, n_octets)..("\0"):rep(#ip.packed-n_octets)))
|
||||
end
|
||||
|
||||
return {
|
||||
new_ip = new_ip,
|
||||
commonPrefixLength = commonPrefixLength,
|
||||
parse_cidr = parse_cidr,
|
||||
match = match,
|
||||
is_ip = is_ip;
|
||||
truncate = truncate;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue