From: Remi Gacogne Date: Fri, 11 Jul 2025 08:04:20 +0000 (+0200) Subject: dns: Add short description for the Not Zone rcode X-Git-Tag: rec-5.4.0-alpha0~36^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e114916d5efd1cd35f8f1e25f7bba02f647a1d7;p=thirdparty%2Fpdns.git dns: Add short description for the Not Zone rcode Signed-off-by: Remi Gacogne --- diff --git a/pdns/dns.cc b/pdns/dns.cc index 38c761cfbf..ed17a5f8e6 100644 --- a/pdns/dns.cc +++ b/pdns/dns.cc @@ -58,7 +58,7 @@ const std::array RCode::rcodes_s = { "Bad/missing Server Cookie" }; -static const std::array rcodes_short_s = { +static const std::array rcodes_short_s = { "noerror", "formerr", "servfail", @@ -69,6 +69,7 @@ static const std::array rcodes_short_s = { "yxrrset", "nxrrset", "notauth", + "notzone", }; std::string RCode::to_s(uint8_t rcode) {