- Change MAX_SENT_COUNT from 16 to 32 to resolve some cases easier.

git-svn-id: file:///svn/unbound/trunk@3127 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2014-05-06 12:37:37 +00:00
parent 5a1ce3450f
commit cddec24dd2
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
6 May 2014: Wouter
- Change MAX_SENT_COUNT from 16 to 32 to resolve some cases easier.
5 May 2014: Wouter 5 May 2014: Wouter
- More #567: remove : from output of stub and forward lists, this is - More #567: remove : from output of stub and forward lists, this is
easier to parse. easier to parse.

View file

@ -57,7 +57,7 @@ struct iter_priv;
/** max number of referrals. Makes sure resolver does not run away */ /** max number of referrals. Makes sure resolver does not run away */
#define MAX_REFERRAL_COUNT 130 #define MAX_REFERRAL_COUNT 130
/** max number of queries-sent-out. Make sure large NS set does not loop */ /** max number of queries-sent-out. Make sure large NS set does not loop */
#define MAX_SENT_COUNT 16 #define MAX_SENT_COUNT 32
/** at what query-sent-count to stop target fetch policy */ /** at what query-sent-count to stop target fetch policy */
#define TARGET_FETCH_STOP 3 #define TARGET_FETCH_STOP 3
/** how nice is a server without further information, in msec /** how nice is a server without further information, in msec