mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_telnet: Use promise based DNS resolving
Mostly done for testing this new API
This commit is contained in:
parent
c305f96931
commit
b37a36b1be
1 changed files with 5 additions and 7 deletions
|
@ -1189,14 +1189,12 @@ end
|
|||
|
||||
function def_env.dns:lookup(name, typ, class)
|
||||
local resolver = get_resolver(self.session);
|
||||
local ret = "Query sent";
|
||||
local print = self.session.print;
|
||||
local function handler(...)
|
||||
ret = "Got response";
|
||||
print(...);
|
||||
local ret, err = async.wait(resolver:lookup_promise(name, typ, class));
|
||||
if ret then
|
||||
return true, ret;
|
||||
elseif err then
|
||||
return false, err;
|
||||
end
|
||||
resolver:lookup(handler, name, typ, class);
|
||||
return true, ret;
|
||||
end
|
||||
|
||||
function def_env.dns:addnameserver(...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue