mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.ip: Cache return values of all methods in one place
This commit is contained in:
parent
b799561dca
commit
a4aa61fdb1
1 changed files with 5 additions and 1 deletions
|
@ -12,7 +12,11 @@ local ip_methods = {};
|
|||
|
||||
local ip_mt = {
|
||||
__index = function (ip, key)
|
||||
return ip_methods[key](ip);
|
||||
local method = ip_methods[key];
|
||||
if not method then return nil; end
|
||||
local ret = method(ip);
|
||||
ip[key] = ret;
|
||||
return ret;
|
||||
end,
|
||||
__tostring = function (ip) return ip.addr; end,
|
||||
__eq = function (ipA, ipB) return ipA.addr == ipB.addr; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue