mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.unbound: Delay loading until server has started or first query
Shouldn't need a DNS resolver until later anyways. Might even be sensible to only initialize if a query is actually attempted.
This commit is contained in:
parent
c69f675965
commit
de5e7a9c77
1 changed files with 4 additions and 1 deletions
|
@ -60,7 +60,9 @@ local function initialize()
|
|||
unbound = libunbound.new(unbound_config);
|
||||
server_conn = connect_server(unbound, net_server);
|
||||
end
|
||||
initialize();
|
||||
if prosody then
|
||||
prosody.events.add_handler("server-started", initialize);
|
||||
end
|
||||
|
||||
local answer_mt = {
|
||||
__tostring = function(self)
|
||||
|
@ -105,6 +107,7 @@ local function prep_answer(a)
|
|||
end
|
||||
|
||||
local function lookup(callback, qname, qtype, qclass)
|
||||
if not unbound then initialize(); end
|
||||
qtype = qtype and s_upper(qtype) or "A";
|
||||
qclass = qclass and s_upper(qclass) or "IN";
|
||||
local ntype, nclass = types[qtype], classes[qclass];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue