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:
Kim Alvefur 2021-07-18 21:57:24 +02:00
parent fa25e086f4
commit 360eda6cd3
2 changed files with 6 additions and 4 deletions

View file

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