mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.ip: Fix equality metamethod for Lua 5.3
This commit is contained in:
parent
34098ab9da
commit
78eb3b5935
1 changed files with 7 additions and 1 deletions
|
@ -19,8 +19,14 @@ local ip_mt = {
|
|||
return ret;
|
||||
end,
|
||||
__tostring = function (ip) return ip.addr; end,
|
||||
__eq = function (ipA, ipB) return ipA.packed == ipB.packed; end
|
||||
};
|
||||
ip_mt.__eq = function (ipA, ipB)
|
||||
if getmetatable(ipA) ~= ip_mt or getmetatable(ipB) ~= ip_mt then
|
||||
-- Lua 5.3+ calls this if both operands are tables, even if metatables differ
|
||||
return false;
|
||||
end
|
||||
return ipA.packed == ipB.packed;
|
||||
end
|
||||
|
||||
local hex2bits = {
|
||||
["0"] = "0000", ["1"] = "0001", ["2"] = "0010", ["3"] = "0011",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue