mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
Empty callback.
git-svn-id: file:///svn/unbound/trunk@1791 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
ba47856946
commit
bad061a35a
2 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
27 August 2009: Wouter
|
||||||
|
- autotrust: mesh answer callback is empty.
|
||||||
|
|
||||||
26 August 2009: Wouter
|
26 August 2009: Wouter
|
||||||
- autotrust probing.
|
- autotrust probing.
|
||||||
- iana portlist updated.
|
- iana portlist updated.
|
||||||
|
|
|
||||||
|
|
@ -1684,10 +1684,13 @@ autr_debug_print(struct val_anchors* anchors)
|
||||||
lock_basic_unlock(&anchors->lock);
|
lock_basic_unlock(&anchors->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
void probe_answer_cb(void* arg, int rcode, ldns_buffer* buf,
|
void probe_answer_cb(void* ATTR_UNUSED(arg), int ATTR_UNUSED(rcode),
|
||||||
enum sec_status sec)
|
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");
|
verbose(VERB_ALGO, "autotrust probe answer cb");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue