mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.ip: Add is_ip() helper method to detect if an object is an ip object
This commit is contained in:
parent
9c8b2f5099
commit
3eedf79c8b
1 changed files with 5 additions and 0 deletions
|
@ -241,9 +241,14 @@ function match(ipA, ipB, bits)
|
|||
return ipA.bits:sub(1, bits) == ipB.bits:sub(1, bits);
|
||||
end
|
||||
|
||||
local function is_ip(obj)
|
||||
return getmetatable(obj) == ip_mt;
|
||||
end
|
||||
|
||||
return {
|
||||
new_ip = new_ip,
|
||||
commonPrefixLength = commonPrefixLength,
|
||||
parse_cidr = parse_cidr,
|
||||
match = match,
|
||||
is_ip = is_ip;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue