mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Handle being loaded outside of Prosody
`if timer ...` suggests that this was intended, but it did not work because net.timer depends on net.server which refuses to be loaded outside of Prosody.
This commit is contained in:
parent
1969b96da1
commit
522e9778ea
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
|
||||
local socket = require "socket";
|
||||
local timer = require "util.timer";
|
||||
local have_timer, timer = pcall(require, "util.timer");
|
||||
local new_ip = require "util.ip".new_ip;
|
||||
local have_util_net, util_net = pcall(require, "util.net");
|
||||
|
||||
|
@ -871,7 +871,7 @@ function resolver:query(qname, qtype, qclass) -- - - - - - - - - - -- query
|
|||
set(self.wanted, qclass, qtype, qname, co, true);
|
||||
end
|
||||
|
||||
if timer and self.timeout then
|
||||
if have_timer and self.timeout then
|
||||
local num_servers = #self.server;
|
||||
local i = 1;
|
||||
timer.add_task(self.timeout, function ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue