]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Empty callback.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 27 Aug 2009 15:22:48 +0000 (15:22 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Thu, 27 Aug 2009 15:22:48 +0000 (15:22 +0000)
git-svn-id: file:///svn/unbound/trunk@1791 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
validator/autotrust.c

index 1f6485fa407ee96c1b8dd30eb635e7c342088eda..1e6baa26fd6877d798e2410c4f9bacb637ccaed6 100644 (file)
@@ -1,3 +1,6 @@
+27 August 2009: Wouter
+       - autotrust: mesh answer callback is empty.
+
 26 August 2009: Wouter
        - autotrust probing.
        - iana portlist updated.
index 4086fb24e7ecc5754b48a0ff10022cb7c7cd7108..cb14c09206714e985dee711d54540ec0c96c05dc 100644 (file)
@@ -1684,10 +1684,13 @@ autr_debug_print(struct val_anchors* anchors)
        lock_basic_unlock(&anchors->lock);
 }
 
-void probe_answer_cb(void* arg, int rcode, ldns_buffer* buf
-       enum sec_status sec)
+void probe_answer_cb(void* ATTR_UNUSED(arg), int ATTR_UNUSED(rcode)
+       ldns_buffer* ATTR_UNUSED(buf), enum sec_status ATTR_UNUSED(sec))
 {
-       struct module_env* env = (struct module_env*)arg;
+       /* retry was set before the query was done,
+        * re-querytime is set when query succeeded.
+        * So, nothing to do now. */
+       /*struct module_env* env = (struct module_env*)arg;*/
        verbose(VERB_ALGO, "autotrust probe answer cb");
 }