From: Matthijs Mekking Date: Mon, 14 Dec 2020 09:36:17 +0000 (+0100) Subject: Remove the option 'filter-aaaa' options X-Git-Tag: v9.17.10~31^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f411f510f7acb59610d8b2572d2e25c75b646a25;p=thirdparty%2Fbind9.git Remove the option 'filter-aaaa' options The 'filter-aaaa', 'filter-aaaa-on-v4', and 'filter-aaaa-on-v6' options are replaced by the filter-aaaa plugin. This plugin was introduced in 9.13.5 and so it is safe to remove the named.conf options. --- diff --git a/doc/misc/options b/doc/misc/options index 6d7bcc798f5..33874c2d0c0 100644 --- a/doc/misc/options +++ b/doc/misc/options @@ -176,9 +176,6 @@ options { fetches-per-server [ ( drop | fail ) ]; fetches-per-zone [ ( drop | fail ) ]; files ( default | unlimited | ); - filter-aaaa { ; ... }; // obsolete - filter-aaaa-on-v4 ; // obsolete - filter-aaaa-on-v6 ; // obsolete flush-zones-on-shutdown ; forward ( first | only ); forwarders [ port ] [ dscp ] { ( @@ -533,9 +530,6 @@ view [ ] { fetch-quota-params ; fetches-per-server [ ( drop | fail ) ]; fetches-per-zone [ ( drop | fail ) ]; - filter-aaaa { ; ... }; // obsolete - filter-aaaa-on-v4 ; // obsolete - filter-aaaa-on-v6 ; // obsolete forward ( first | only ); forwarders [ port ] [ dscp ] { ( | ) [ port ] [ dscp ]; ... }; diff --git a/lib/isccfg/namedconf.c b/lib/isccfg/namedconf.c index f85c698e613..b7ed28d24e8 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -1961,9 +1961,9 @@ static cfg_clausedef_t view_clauses[] = { { "fetch-quota-params", &cfg_type_fetchquota, 0 }, { "fetches-per-server", &cfg_type_fetchesper, 0 }, { "fetches-per-zone", &cfg_type_fetchesper, 0 }, - { "filter-aaaa", &cfg_type_bracketed_aml, CFG_CLAUSEFLAG_OBSOLETE }, - { "filter-aaaa-on-v4", &cfg_type_boolean, CFG_CLAUSEFLAG_OBSOLETE }, - { "filter-aaaa-on-v6", &cfg_type_boolean, CFG_CLAUSEFLAG_OBSOLETE }, + { "filter-aaaa", &cfg_type_bracketed_aml, CFG_CLAUSEFLAG_ANCIENT }, + { "filter-aaaa-on-v4", &cfg_type_boolean, CFG_CLAUSEFLAG_ANCIENT }, + { "filter-aaaa-on-v6", &cfg_type_boolean, CFG_CLAUSEFLAG_ANCIENT }, { "glue-cache", &cfg_type_boolean, CFG_CLAUSEFLAG_DEPRECATED }, { "ipv4only-enable", &cfg_type_boolean, 0 }, { "ipv4only-contact", &cfg_type_astring, 0 },