]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- log if a server is skipped because it is on the donotquery list,
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 5 Jul 2010 07:45:20 +0000 (07:45 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 5 Jul 2010 07:45:20 +0000 (07:45 +0000)
  at verbosity 4, to enable diagnosis why no queries to 127.0.0.1.

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

doc/Changelog
iterator/iter_utils.c

index 20ef8870173b67dd2d1121be96c4689d815f63ad..bd87b8345ee4addbac91e60542b83016c48dc545 100644 (file)
@@ -1,3 +1,7 @@
+5 July 2010: Wouter
+       - log if a server is skipped because it is on the donotquery list,
+         at verbosity 4, to enable diagnosis why no queries to 127.0.0.1.
+
 1 July 2010: Wouter
        - Fix RFC4035 compliance with 2.2 statement that the DNSKEY at apex
          must be signed with all algorithms from the DS rrset at the parent.
index b2531449d9862681b888c0b6e73ab2672cac64d4..dda1745f3a508f1583d2dc585a30d10d80742144 100644 (file)
@@ -187,6 +187,8 @@ iter_filter_unsuitable(struct iter_env* iter_env, struct module_env* env,
        if(a->bogus)
                return -1; /* address of server is bogus */
        if(donotq_lookup(iter_env->donotq, &a->addr, a->addrlen)) {
+               log_addr(VERB_ALGO, "skip addr on the donotquery list",
+                       &a->addr, a->addrlen);
                return -1; /* server is on the donotquery list */
        }
        if(!iter_env->supports_ipv6 && addr_is_ip6(&a->addr, a->addrlen)) {