mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 16:49:35 -05:00
- Bump MAX_RESTART_COUNT to 11 from 8; in relation to #438. This allows
longer CNAME chains in Unbound.
This commit is contained in:
parent
efa15747a2
commit
8878680898
2 changed files with 5 additions and 3 deletions
|
|
@ -2,6 +2,8 @@
|
||||||
- Merge PR #415 from sibeream: Use
|
- Merge PR #415 from sibeream: Use
|
||||||
/proc/sys/net/ipv4/ip_local_port_range to determine available outgoing
|
/proc/sys/net/ipv4/ip_local_port_range to determine available outgoing
|
||||||
ports. (New --enable-linux-ip-local-port-range configuration option)
|
ports. (New --enable-linux-ip-local-port-range configuration option)
|
||||||
|
- Bump MAX_RESTART_COUNT to 11 from 8; in relation to #438. This
|
||||||
|
allows longer CNAME chains in Unbound.
|
||||||
|
|
||||||
4 August 2021: Wouter
|
4 August 2021: Wouter
|
||||||
- In unit test use openssl set security level to allow keys in test.
|
- In unit test use openssl set security level to allow keys in test.
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ struct rbtree_type;
|
||||||
* its subqueries */
|
* its subqueries */
|
||||||
#define MAX_TARGET_NX 5
|
#define MAX_TARGET_NX 5
|
||||||
/** 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 11
|
||||||
/** 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 */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue