mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- For #602: Allow the module-config "subnetcache validator cachedb
iterator".
This commit is contained in:
parent
2996040c6c
commit
c7ae3ef156
2 changed files with 6 additions and 0 deletions
|
|
@ -8,6 +8,8 @@
|
||||||
- Add rpz: for-downstream: yesno option, where the RPZ zone is
|
- Add rpz: for-downstream: yesno option, where the RPZ zone is
|
||||||
authoritatively answered for, so the RPZ zone contents can be
|
authoritatively answered for, so the RPZ zone contents can be
|
||||||
checked with DNS queries directed at the RPZ zone.
|
checked with DNS queries directed at the RPZ zone.
|
||||||
|
- For #602: Allow the module-config "subnetcache validator cachedb
|
||||||
|
iterator".
|
||||||
|
|
||||||
11 January 2022: George
|
11 January 2022: George
|
||||||
- Fix prematurely terminated TCP queries when a reply has the same ID.
|
- Fix prematurely terminated TCP queries when a reply has the same ID.
|
||||||
|
|
|
||||||
|
|
@ -787,6 +787,10 @@ morechecks(struct config_file* cfg)
|
||||||
&& strcmp(cfg->module_conf, "validator python cachedb iterator") != 0
|
&& strcmp(cfg->module_conf, "validator python cachedb iterator") != 0
|
||||||
&& strcmp(cfg->module_conf, "respip validator python cachedb iterator") != 0
|
&& strcmp(cfg->module_conf, "respip validator python cachedb iterator") != 0
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CLIENT_SUBNET) && defined(USE_CACHEDB)
|
||||||
|
&& strcmp(cfg->module_conf, "respip subnetcache validator cachedb iterator") != 0
|
||||||
|
&& strcmp(cfg->module_conf, "subnetcache validator cachedb iterator") != 0
|
||||||
|
#endif
|
||||||
#ifdef CLIENT_SUBNET
|
#ifdef CLIENT_SUBNET
|
||||||
&& strcmp(cfg->module_conf, "subnetcache iterator") != 0
|
&& strcmp(cfg->module_conf, "subnetcache iterator") != 0
|
||||||
&& strcmp(cfg->module_conf, "respip subnetcache iterator") != 0
|
&& strcmp(cfg->module_conf, "respip subnetcache iterator") != 0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue