From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <28b67d34e9620a2f4c9bfdd73b967d1c@coraid.com> From: erik quanstrom Date: Mon, 5 Mar 2007 14:18:42 -0500 To: 9fans@cse.psu.edu Subject: Re: [9fans] dns changes In-Reply-To: <0381bfcb7eaa86a4876663db6c2960be@plan9.bell-labs.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 17aab058-ead2-11e9-9d60-3106f5b1d025 thanks, geoff. one problem i'm seeing with ndb/dns is that it is caching glue records from the tld servers (like ultradns.net or gtld-servers.net) even though the aa bit is not set. i think this part is in error, but didn't have time to fully debug the change. /* * Any reply from an authoritative server, * or a positive reply terminates the search */ if(m.an != nil || (m.flags & Fauth)){ if(m.an == nil && (m.flags & Rmask) == Rname) dp->nonexistent = Rname; else dp->nonexistent = 0; shouldn't that be if(m.flags & Fauth) ? - erik