mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Also cache records from the 'additional' section
Could be getting A/AAAA records here when asking for SRV
This commit is contained in:
parent
ad268c9db3
commit
73a7fa134d
1 changed files with 4 additions and 0 deletions
|
@ -892,6 +892,10 @@ function resolver:feed(sock, packet, force)
|
|||
self:remember(rr, rr.type);
|
||||
end
|
||||
|
||||
for _, rr in pairs(response.additional) do
|
||||
self:remember(rr, rr.type);
|
||||
end
|
||||
|
||||
-- retire the query
|
||||
local queries = self.active[response.header.id];
|
||||
queries[response.question.raw] = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue