mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
4d26d4cb15
commit
07ef92dbd8
1 changed files with 4 additions and 0 deletions
|
@ -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 });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue