mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
ae35950f7c
1 changed files with 10 additions and 2 deletions
12
net/dns.lua
12
net/dns.lua
|
@ -90,12 +90,20 @@ end
|
|||
|
||||
local function augment (t, prefix) -- - - - - - - - - - - - - - - - - augment
|
||||
local a = {};
|
||||
for i = 1, 0xffff do
|
||||
local s = t[i] or ("%s%d"):format(prefix, i);
|
||||
for i,s in pairs(t) do
|
||||
a[i] = s;
|
||||
a[s] = s;
|
||||
a[string.lower(s)] = s;
|
||||
end
|
||||
setmetatable(a, {
|
||||
__index = function (_, i)
|
||||
if type(i) == "number" then
|
||||
return ("%s%d"):format(prefix, i);
|
||||
elseif type(i) == "string" then
|
||||
return i:upper();
|
||||
end
|
||||
end;
|
||||
})
|
||||
return a;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue