]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- ANY responses include DNAME records if present, as per Evan Hunt's
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 14 Oct 2015 08:02:14 +0000 (08:02 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 14 Oct 2015 08:02:14 +0000 (08:02 +0000)
  remark in dnsop.

git-svn-id: file:///svn/unbound/trunk@3504 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
services/cache/dns.c

index 2690971a4c18d008f3480cea509ccd15dc898ea9..73ccfb54ea50ba34d72447cf0d1fa123b6cbc242 100644 (file)
@@ -1,3 +1,7 @@
+14 October 2015: Wouter
+       - ANY responses include DNAME records if present, as per Evan Hunt's
+         remark in dnsop.
+
 9 October 2015: Wouter
        - Default for ssl-port is port 853, the temporary port assignment
          for secure domain name system traffic.
index ba81afde4fda0701db0b6b579990b04a77b55341..e14e636dbfd05ccae95e6c9eb8e28022c751abf0 100644 (file)
@@ -656,8 +656,9 @@ fill_any(struct module_env* env,
        time_t now = *env->now;
        struct dns_msg* msg = NULL;
        uint16_t lookup[] = {LDNS_RR_TYPE_A, LDNS_RR_TYPE_AAAA,
-               LDNS_RR_TYPE_MX, LDNS_RR_TYPE_SOA, LDNS_RR_TYPE_NS, 0};
-       int i, num=5; /* number of RR types to look up */
+               LDNS_RR_TYPE_MX, LDNS_RR_TYPE_SOA, LDNS_RR_TYPE_NS,
+               LDNS_RR_TYPE_DNAME, 0};
+       int i, num=6; /* number of RR types to look up */
        log_assert(lookup[num] == 0);
 
        for(i=0; i<num; i++) {