luci-mod-admin-full: use rpcd-mod-rrdns for reverse DNS lookups
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
4e1b884157
commit
00ae50134b
1 changed files with 6 additions and 8 deletions
|
@ -139,14 +139,12 @@ function action_connections()
|
||||||
end
|
end
|
||||||
|
|
||||||
function action_nameinfo(...)
|
function action_nameinfo(...)
|
||||||
local i
|
local util = require "luci.util"
|
||||||
local rv = { }
|
|
||||||
for i = 1, select('#', ...) do
|
|
||||||
local addr = select(i, ...)
|
|
||||||
local fqdn = nixio.getnameinfo(addr)
|
|
||||||
rv[addr] = fqdn or (addr:match(":") and "[%s]" % addr or addr)
|
|
||||||
end
|
|
||||||
|
|
||||||
luci.http.prepare_content("application/json")
|
luci.http.prepare_content("application/json")
|
||||||
luci.http.write_json(rv)
|
luci.http.write_json(util.ubus("network.rrdns", "lookup", {
|
||||||
|
addrs = { ... },
|
||||||
|
timeout = 5000,
|
||||||
|
limit = 1000
|
||||||
|
}) or { })
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue