mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Remember query only after it was sent, in case it was not (fixes #598)
This commit is contained in:
parent
ffb24222c3
commit
ecf5de4a4d
1 changed files with 5 additions and 5 deletions
10
net/dns.lua
10
net/dns.lua
|
@ -763,16 +763,16 @@ function resolver:query(qname, qtype, qclass) -- - - - - - - - - - -- query
|
|||
self.active[id] = self.active[id] or {};
|
||||
self.active[id][question] = o;
|
||||
|
||||
-- remember which coroutine wants the answer
|
||||
if co then
|
||||
set(self.wanted, qclass, qtype, qname, co, true);
|
||||
end
|
||||
|
||||
local conn, err = self:getsocket(o.server)
|
||||
if not conn then
|
||||
return nil, err;
|
||||
end
|
||||
conn:send (o.packet)
|
||||
|
||||
-- remember which coroutine wants the answer
|
||||
if co then
|
||||
set(self.wanted, qclass, qtype, qname, co, true);
|
||||
end
|
||||
|
||||
if timer and self.timeout then
|
||||
local num_servers = #self.server;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue