mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dependencies: Prefer net.unbound over net.adns
This commit is contained in:
parent
4a42f8042d
commit
c98a6d205e
1 changed files with 5 additions and 0 deletions
|
@ -104,6 +104,11 @@ local function check_dependencies()
|
||||||
{ "luarocks", "luarocks install luaunbound" };
|
{ "luarocks", "luarocks install luaunbound" };
|
||||||
{ "Source", "https://www.zash.se/luaunbound.html" };
|
{ "Source", "https://www.zash.se/luaunbound.html" };
|
||||||
}, "Old DNS resolver library will be used", err);
|
}, "Old DNS resolver library will be used", err);
|
||||||
|
else
|
||||||
|
package.preload["net.adns"] = function ()
|
||||||
|
local ub = require "net.unbound";
|
||||||
|
return ub;
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local encodings, err = softreq "util.encodings"
|
local encodings, err = softreq "util.encodings"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue