aboutsummaryrefslogtreecommitdiffstats
path: root/util/dependencies.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-06-25 17:41:07 +0200
committerKim Alvefur <zash@zash.se>2020-06-25 17:41:07 +0200
commit3b7348fb55baa9c30baf76cef28395b9c8ccc160 (patch)
treee822c50fb364fa55393b3d4812e2d6e0a5f45e2c /util/dependencies.lua
parent966a8bd7943dcdf23ae7d9339cd7a3ab74137269 (diff)
downloadprosody-3b7348fb55baa9c30baf76cef28395b9c8ccc160.tar.gz
prosody-3b7348fb55baa9c30baf76cef28395b9c8ccc160.zip
util.dependencies: Prefer net.unbound over net.adns
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r--util/dependencies.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index b76f7ab1..56a04736 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -104,6 +104,11 @@ local function check_dependencies()
{ "luarocks", "luarocks install luaunbound" };
{ "Source", "https://www.zash.se/luaunbound.html" };
}, "Old DNS resolver library will be used", err);
+ else
+ package.preload["net.adns"] = function ()
+ local ub = require "net.unbound";
+ return ub;
+ end
end
local encodings, err = softreq "util.encodings"