From d69fab15306704f529c375e33d73d3ee741fa086 Mon Sep 17 00:00:00 2001 From: Aram Sargsyan Date: Mon, 3 Jun 2024 10:56:02 +0000 Subject: [PATCH] Mark SIG(0) quota settings as experimantal A different solution in the future might be adopted depending on feedback and other new information, so it makes sense to mark these options as EXPERIMENTAL until we have more data. --- doc/misc/options | 4 ++-- lib/isccfg/namedconf.c | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/misc/options b/doc/misc/options index 0aec7c5dea..5e5f808704 100644 --- a/doc/misc/options +++ b/doc/misc/options @@ -277,8 +277,8 @@ options { sig-signing-signatures ; sig-signing-type ; sig-validity-interval [ ]; // obsolete - sig0checks-quota ; - sig0checks-quota-exempt { ; ... }; + sig0checks-quota ; // experimental + sig0checks-quota-exempt { ; ... }; // experimental sortlist { ; ... }; // deprecated stale-answer-client-timeout ( disabled | off | ); stale-answer-enable ; diff --git a/lib/isccfg/namedconf.c b/lib/isccfg/namedconf.c index b9f8500d7a..a69c559f38 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -1361,8 +1361,9 @@ static cfg_clausedef_t options_clauses[] = { { "session-keyalg", &cfg_type_astring, 0 }, { "session-keyfile", &cfg_type_qstringornone, 0 }, { "session-keyname", &cfg_type_astring, 0 }, - { "sig0checks-quota", &cfg_type_uint32, 0 }, - { "sig0checks-quota-exempt", &cfg_type_bracketed_aml, 0 }, + { "sig0checks-quota", &cfg_type_uint32, CFG_CLAUSEFLAG_EXPERIMENTAL }, + { "sig0checks-quota-exempt", &cfg_type_bracketed_aml, + CFG_CLAUSEFLAG_EXPERIMENTAL }, { "sit-secret", NULL, CFG_CLAUSEFLAG_ANCIENT }, { "stacksize", &cfg_type_size, CFG_CLAUSEFLAG_ANCIENT }, { "startup-notify-rate", &cfg_type_uint32, 0 },