mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.unbound: Move libunbound initialization into a function
Prepare for lazy-loading it.
This commit is contained in:
parent
5760514f5e
commit
c69f675965
1 changed files with 7 additions and 4 deletions
|
@ -54,9 +54,13 @@ local function connect_server(unbound, server)
|
|||
end);
|
||||
end
|
||||
|
||||
local unbound = libunbound.new(unbound_config);
|
||||
local unbound, server_conn;
|
||||
|
||||
local server_conn = connect_server(unbound, net_server);
|
||||
local function initialize()
|
||||
unbound = libunbound.new(unbound_config);
|
||||
server_conn = connect_server(unbound, net_server);
|
||||
end
|
||||
initialize();
|
||||
|
||||
local answer_mt = {
|
||||
__tostring = function(self)
|
||||
|
@ -154,8 +158,7 @@ end
|
|||
local function purge()
|
||||
for id in pairs(waiting_queries) do cancel(id); end
|
||||
if server_conn then server_conn:close(); end
|
||||
unbound = libunbound.new(unbound_config);
|
||||
server_conn = connect_server(unbound, net_server);
|
||||
initialize();
|
||||
return true;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue