net.dns: Remember query only after it was sent, in case it was not (fixes #598)

This commit is contained in:
Kim Alvefur 2016-01-21 22:26:46 +01:00
parent ffb24222c3
commit ecf5de4a4d

View file

@ -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;