mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- MAX_TARGET_COUNT increased to 64, to fix up sporadic resolution
failures. git-svn-id: file:///svn/unbound/trunk@3494 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
725f11e349
commit
0735cf0e53
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
28 September 2015: Wouter
|
||||||
|
- MAX_TARGET_COUNT increased to 64, to fix up sporadic resolution
|
||||||
|
failures.
|
||||||
|
|
||||||
25 September 2015: Wouter
|
25 September 2015: Wouter
|
||||||
- Fix unbound-control flush that does not succeed in removing data.
|
- Fix unbound-control flush that does not succeed in removing data.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ struct iter_priv;
|
||||||
struct rbtree_t;
|
struct rbtree_t;
|
||||||
|
|
||||||
/** max number of targets spawned for a query and its subqueries */
|
/** max number of targets spawned for a query and its subqueries */
|
||||||
#define MAX_TARGET_COUNT 32
|
#define MAX_TARGET_COUNT 64
|
||||||
/** max number of query restarts. Determines max number of CNAME chain. */
|
/** max number of query restarts. Determines max number of CNAME chain. */
|
||||||
#define MAX_RESTART_COUNT 8
|
#define MAX_RESTART_COUNT 8
|
||||||
/** max number of referrals. Makes sure resolver does not run away */
|
/** max number of referrals. Makes sure resolver does not run away */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue