mirror of
https://github.com/bjc/prosody.git
synced 2025-03-31 11:47:40 +03:00
net.server_epoll: Improve readability of DANE noise
Serialized Lua is not the most readable form of TLSA records.
This commit is contained in:
parent
faf20e5dc9
commit
c769eae82b
1 changed files with 1 additions and 1 deletions
|
@ -807,7 +807,7 @@ function interface:inittls(tls_ctx, now)
|
|||
self:debug("Enabling DANE with %d TLSA records", #self.extra.tlsa);
|
||||
self:noise("DANE hostname is %q", self.servername or self.extra.dane_hostname);
|
||||
for _, tlsa in ipairs(self.extra.tlsa) do
|
||||
self:noise("TLSA: %q", tlsa);
|
||||
self:noise("TLSA: %s", tlsa);
|
||||
conn:settlsa(tlsa.use, tlsa.select, tlsa.match, tlsa.data);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue