util.dependencies: Prefer net.unbound over net.adns

This commit is contained in:
Kim Alvefur 2020-06-25 17:41:07 +02:00
parent 4a42f8042d
commit c98a6d205e

View file

@ -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"