mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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 function augment (t, prefix) -- - - - - - - - - - - - - - - - - augment
|
||||||
local a = {};
|
local a = {};
|
||||||
for i = 1, 0xffff do
|
for i,s in pairs(t) do
|
||||||
local s = t[i] or ("%s%d"):format(prefix, i);
|
|
||||||
a[i] = s;
|
a[i] = s;
|
||||||
a[s] = s;
|
a[s] = s;
|
||||||
a[string.lower(s)] = s;
|
a[string.lower(s)] = s;
|
||||||
end
|
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;
|
return a;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue