mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
net.unbound: Show canonical name in textual format (e.g. in shell)
libunbound does not tell us the whole chain of CNAMEs, only the final canonical name. This is to aid in debugging since it will only be shown in the shell.
This commit is contained in:
parent
04a918233e
commit
f29bc1c119
1 changed files with 5 additions and 1 deletions
|
@ -80,8 +80,12 @@ local answer_mt = {
|
|||
h = h .. s_format(", Bogus: %s", self.bogus);
|
||||
end
|
||||
local t = { h };
|
||||
local qname = self.canonname or self.qname;
|
||||
if self.canonname then
|
||||
table.insert(t, self.qname .. "\t" .. classes[self.qclass] .. "\tCNAME\t" .. self.canonname);
|
||||
end
|
||||
for i = 1, #self do
|
||||
t[i+1]=self.qname.."\t"..classes[self.qclass].."\t"..types[self.qtype].."\t"..tostring(self[i]);
|
||||
table.insert(t, qname .. "\t" .. classes[self.qclass] .. "\t" .. types[self.qtype] .. "\t" .. tostring(self[i]));
|
||||
end
|
||||
local _string = t_concat(t, "\n");
|
||||
self._string = _string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue