From: George Thessalonikefs Date: Wed, 4 Aug 2021 08:51:02 +0000 (+0200) Subject: - Bump MAX_RESTART_COUNT to 11 from 8; in relation to #438. This allows X-Git-Tag: release-1.13.2rc1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8878680898b23671d31857930891f65affe639c8;p=thirdparty%2Funbound.git - Bump MAX_RESTART_COUNT to 11 from 8; in relation to #438. This allows longer CNAME chains in Unbound. --- diff --git a/doc/Changelog b/doc/Changelog index a1b02a040..4503feea9 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,7 +1,9 @@ 4 August 2021: George - Merge PR #415 from sibeream: Use - /proc/sys/net/ipv4/ip_local_port_range to determine available outgoing - ports. (New --enable-linux-ip-local-port-range configuration option) + /proc/sys/net/ipv4/ip_local_port_range to determine available outgoing + 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 - In unit test use openssl set security level to allow keys in test. diff --git a/iterator/iterator.h b/iterator/iterator.h index 7952f26df..dc5e57527 100644 --- a/iterator/iterator.h +++ b/iterator/iterator.h @@ -61,7 +61,7 @@ struct rbtree_type; * its subqueries */ #define MAX_TARGET_NX 5 /** 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 */ #define MAX_REFERRAL_COUNT 130 /** max number of queries-sent-out. Make sure large NS set does not loop */