# HG changeset patch # User Matthew Wild # Date 1265987148 0 # Node ID 70e6ea49aff35f15385463cbacd18699164f1e79 # Parent 66a1aa0bedc05c3505d21fb8000fba5192177018 net.dns: Normalize records before placing them in the cache, fixes issues with CNAME targets in CAPS (fixes #161) diff -r 66a1aa0bedc0 -r 70e6ea49aff3 net/dns.lua --- a/net/dns.lua Fri Feb 12 12:43:50 2010 +0000 +++ b/net/dns.lua Fri Feb 12 15:05:48 2010 +0000 @@ -594,17 +594,18 @@ function resolver:remember(rr, type) -- - - - - - - - - - - - - - remember --print ('remember', type, rr.class, rr.type, rr.name) + local qname, qtype, qclass = standardize(rr.name, rr.type, rr.class); if type ~= '*' then - type = rr.type; - local all = get(self.cache, rr.class, '*', rr.name); + type = qtype; + local all = get(self.cache, qclass, '*', qname); --print('remember all', all); if all then append(all, rr); end end self.cache = self.cache or setmetatable({}, cache_metatable); - local rrs = get(self.cache, rr.class, type, rr.name) or - set(self.cache, rr.class, type, rr.name, setmetatable({}, rrs_metatable)); + local rrs = get(self.cache, qclass, type, qname) or + set(self.cache, qclass, type, qname, setmetatable({}, rrs_metatable)); append(rrs, rr); if type == 'MX' then self.unsorted[rrs] = true; end