mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-03 20:29:28 -05:00
- Fix to ifdef fptr wlist item for dnstap.
This commit is contained in:
parent
ed6e3c0c66
commit
3527171397
2 changed files with 3 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
|||
- Fix #305: dnstap logging significantly affects unbound performance
|
||||
(regression in 1.11).
|
||||
- Fix #305: only wake up thread when threshold reached.
|
||||
- Fix to ifdef fptr wlist item for dnstap.
|
||||
|
||||
23 September 2020: Ralph
|
||||
- Fix edns-client-tags get_option typo
|
||||
|
|
|
|||
|
|
@ -138,7 +138,9 @@ fptr_whitelist_comm_timer(void (*fptr)(void*))
|
|||
else if(fptr == &auth_xfer_probe_timer_callback) return 1;
|
||||
else if(fptr == &auth_xfer_transfer_timer_callback) return 1;
|
||||
else if(fptr == &mesh_serve_expired_callback) return 1;
|
||||
#ifdef USE_DNSTAP
|
||||
else if(fptr == &mq_wakeup_cb) return 1;
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue