mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.ip: Make bit string function into a method
This commit is contained in:
parent
0152e8b7c6
commit
e9e827557b
1 changed files with 9 additions and 7 deletions
16
util/ip.lua
16
util/ip.lua
|
@ -51,12 +51,7 @@ local function new_ip(ipStr, proto)
|
|||
return setmetatable({ addr = ipStr, packed = packed, proto = proto, zone = zone }, ip_mt);
|
||||
end
|
||||
|
||||
local function toBits(ip)
|
||||
local result = "";
|
||||
local fields = {};
|
||||
if ip.proto == "IPv4" then
|
||||
ip = ip.toV4mapped;
|
||||
end
|
||||
function ip_methods.bits(ip)
|
||||
ip = (ip.addr):upper();
|
||||
ip:gsub("([^:]*):?", function (c) fields[#fields + 1] = c end);
|
||||
if not ip:match(":$") then fields[#fields] = nil; end
|
||||
|
@ -77,8 +72,15 @@ local function toBits(ip)
|
|||
return result;
|
||||
end
|
||||
|
||||
function ip_methods.bits_full(ip)
|
||||
if ip.proto == "IPv4" then
|
||||
ip = ip.toV4mapped;
|
||||
end
|
||||
return ip.bits;
|
||||
end
|
||||
|
||||
local function commonPrefixLength(ipA, ipB)
|
||||
ipA, ipB = toBits(ipA), toBits(ipB);
|
||||
ipA, ipB = ipA.bits_full, ipB.bits_full;
|
||||
for i = 1, 128 do
|
||||
if ipA:sub(i,i) ~= ipB:sub(i,i) then
|
||||
return i-1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue