mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Revert 926d53af9a7a: Restore DANE support
Previous commit adds a workaround, so this doesn't mutate global state anymore, only per-connection 'extra' state as originally intended.
This commit is contained in:
parent
fa25e086f4
commit
360eda6cd3
2 changed files with 6 additions and 4 deletions
|
@ -36,14 +36,15 @@ function methods:next(cb)
|
|||
n = n - 1;
|
||||
if n > 0 then return; end
|
||||
self.targets = targets;
|
||||
--[[
|
||||
-- TODO stash tlsa somewhere per connection
|
||||
-- FIXME 'extra' here is not per connection
|
||||
if self.extra and self.extra.use_dane then
|
||||
if secure and tlsa[1] then
|
||||
self.extra.tlsa = tlsa;
|
||||
self.extra.dane_hostname = self.hostname;
|
||||
else
|
||||
self.extra.tlsa = nil;
|
||||
self.extra.dane_hostname = nil;
|
||||
end
|
||||
end
|
||||
--]]
|
||||
self:next(cb);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue