diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-05 21:36:04 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-05 21:36:04 +0100 |
commit | c69f675965f1548a4c7b923287e184899bedfaea (patch) | |
tree | 363f3bb05f09f83fd8d553e922a414eb1d51dd9b /net | |
parent | 5760514f5e40068655801230505d749807f000c4 (diff) | |
download | prosody-c69f675965f1548a4c7b923287e184899bedfaea.tar.gz prosody-c69f675965f1548a4c7b923287e184899bedfaea.zip |
net.unbound: Move libunbound initialization into a function
Prepare for lazy-loading it.
Diffstat (limited to 'net')
-rw-r--r-- | net/unbound.lua | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/unbound.lua b/net/unbound.lua index 48a8df0e..85ae624f 100644 --- a/net/unbound.lua +++ b/net/unbound.lua @@ -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 |