Empty callback.

git-svn-id: file:///svn/unbound/trunk@1791 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2009-08-27 15:22:48 +00:00
parent ba47856946
commit bad061a35a
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,6 @@
27 August 2009: Wouter
- autotrust: mesh answer callback is empty.
26 August 2009: Wouter
- autotrust probing.
- iana portlist updated.

View 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");
}