# HG changeset patch # User Matthew Wild # Date 1406289271 -3600 # Node ID d232bb1bbe1edf920b9c617a2374f1969ea1c59d # Parent b6f76a52eb361ee5209257f4814ca16fd4c57ac3 net.dns: Remove unused obsolete code diff -r b6f76a52eb36 -r d232bb1bbe1e net/dns.lua --- a/net/dns.lua Fri Jul 25 12:08:07 2014 +0100 +++ b/net/dns.lua Fri Jul 25 12:54:31 2014 +0100 @@ -745,7 +745,6 @@ -- remember which coroutine wants the answer if co then set(self.wanted, qclass, qtype, qname, co, true); - --set(self.yielded, co, qclass, qtype, qname, true); end local conn, err = self:getsocket(o.server) @@ -858,7 +857,6 @@ local cos = get(self.wanted, q.class, q.type, q.name); if cos then for co in pairs(cos) do - set(self.yielded, co, q.class, q.type, q.name, nil); if coroutine.status(co) == "suspended" then coroutine.resume(co); end end set(self.wanted, q.class, q.type, q.name, nil); @@ -899,7 +897,6 @@ local cos = get(self.wanted, q.class, q.type, q.name); if cos then for co in pairs(cos) do - set(self.yielded, co, q.class, q.type, q.name, nil); if coroutine.status(co) == "suspended" then coroutine.resume(co); end end set(self.wanted, q.class, q.type, q.name, nil); @@ -1037,7 +1034,7 @@ function dns.resolver () -- - - - - - - - - - - - - - - - - - - - - resolver -- this function seems to be redundant with resolver.new () - local r = { active = {}, cache = {}, unsorted = {}, wanted = {}, yielded = {}, best_server = 1 }; + local r = { active = {}, cache = {}, unsorted = {}, wanted = {}, best_server = 1 }; setmetatable (r, resolver); setmetatable (r.cache, cache_metatable); setmetatable (r.unsorted, { __mode = 'kv' });