aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-06-03 00:40:42 +0200
committerKim Alvefur <zash@zash.se>2018-06-03 00:40:42 +0200
commit55731a1ea0b65d2ba0569e77d6f40c121c29fc4c (patch)
tree49ce1471ee03b83b8bfcc5d944015ac538aac775
parentf7311c8866f16ce42a441acdc2af05d806e65b9a (diff)
downloadprosody-55731a1ea0b65d2ba0569e77d6f40c121c29fc4c.tar.gz
prosody-55731a1ea0b65d2ba0569e77d6f40c121c29fc4c.zip
net.dns: Also cache records from the 'additional' section
Could be getting A/AAAA records here when asking for SRV
-rw-r--r--net/dns.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/dns.lua b/net/dns.lua
index 93c1805b..b69ba953 100644
--- a/net/dns.lua
+++ b/net/dns.lua
@@ -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;