mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.ip: Add a method returning a normalized IP address
This commit is contained in:
parent
42e41f583d
commit
84da11d50e
1 changed files with 4 additions and 0 deletions
|
@ -52,6 +52,10 @@ local function new_ip(ipStr, proto)
|
|||
return setmetatable({ addr = ipStr, packed = packed, proto = proto, zone = zone }, ip_mt);
|
||||
end
|
||||
|
||||
function ip_methods:normal()
|
||||
return net.ntop(self.packed);
|
||||
end
|
||||
|
||||
function ip_methods.bits(ip)
|
||||
return hex.to(ip.packed):upper():gsub(".", hex2bits);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue