mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Ensure all pending requests get notified of a timeout when looking up a record (fix for d122420542fb)
This commit is contained in:
parent
01b960044e
commit
4ed07e7947
1 changed files with 5 additions and 5 deletions
10
net/dns.lua
10
net/dns.lua
|
@ -770,7 +770,7 @@ function resolver:query(qname, qtype, qclass) -- - - - - - - - - - -- query
|
|||
end
|
||||
end
|
||||
-- Tried everything, failed
|
||||
self:cancel(qclass, qtype, qname, co, true);
|
||||
self:cancel(qclass, qtype, qname);
|
||||
end
|
||||
end)
|
||||
end
|
||||
|
@ -910,13 +910,13 @@ function resolver:feed(sock, packet, force)
|
|||
return response;
|
||||
end
|
||||
|
||||
function resolver:cancel(qclass, qtype, qname, co, call_handler)
|
||||
function resolver:cancel(qclass, qtype, qname)
|
||||
local cos = get(self.wanted, qclass, qtype, qname);
|
||||
if cos then
|
||||
if call_handler then
|
||||
coroutine.resume(co);
|
||||
for co in pairs(cos) do
|
||||
if coroutine.status(co) == "suspended" then coroutine.resume(co); end
|
||||
end
|
||||
cos[co] = nil;
|
||||
set(self.wanted, qclass, qtype, qname, nil);
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue