net.resolvers.service: Only do DANE with secure SRV records

If this seems backwards, that' because it is but the API isn't really
designed to easily pass along details from each resolution step onto the
next.
This commit is contained in:
Kim Alvefur 2021-07-18 23:25:45 +02:00
parent 4d26d4cb15
commit 07ef92dbd8

View file

@ -50,6 +50,10 @@ function methods:next(cb)
answer = {};
end
if answer then
if self.extra and not answer.secure then
self.extra.use_dane = false;
end
if #answer == 0 then
if self.extra and self.extra.default_port then
table.insert(targets, { self.hostname, self.extra.default_port, self.conn_type, self.extra });