util.ip: Add is_ip() helper method to detect if an object is an ip object

This commit is contained in:
Matthew Wild 2023-03-14 18:23:33 +00:00
parent 9c8b2f5099
commit 3eedf79c8b

View file

@ -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;
};