diff --git a/doc/Changelog b/doc/Changelog index 45192f55a..36dc86793 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +28 September 2015: Wouter + - MAX_TARGET_COUNT increased to 64, to fix up sporadic resolution + failures. + 25 September 2015: Wouter - Fix unbound-control flush that does not succeed in removing data. diff --git a/iterator/iterator.h b/iterator/iterator.h index aaf0fb383..9cf53b2b2 100644 --- a/iterator/iterator.h +++ b/iterator/iterator.h @@ -54,7 +54,7 @@ struct iter_priv; struct rbtree_t; /** 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. */ #define MAX_RESTART_COUNT 8 /** max number of referrals. Makes sure resolver does not run away */