diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/dns.lua | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/dns.lua b/net/dns.lua index 5d5f512f..c50e893c 100644 --- a/net/dns.lua +++ b/net/dns.lua @@ -731,17 +731,16 @@ function resolver:receive(rset) -- - - - - - - - - - - - - - - - - receive --print('received response'); --self.print(response); - for i,section in pairs({ 'answer', 'authority', 'additional' }) do - for j,rr in pairs(response[section]) do + for j,rr in pairs(response.answer) do + if rr.name:sub(-#response.question[1].name, -1) == response.question[1].name then self:remember(rr, response.question[1].type) end end -- retire the query local queries = self.active[response.header.id]; - if queries[response.question.raw] then - queries[response.question.raw] = nil; - end + queries[response.question.raw] = nil; + if not next(queries) then self.active[response.header.id] = nil; end if not next(self.active) then self:closeall(); end |