From: Mark Andrews Date: Mon, 21 Jun 2004 00:45:30 +0000 (+0000) Subject: 1671. [contrib] queryperf: add NAPTR to the list of known types. X-Git-Tag: v9.3.0rc2~27 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1b6cc725ef0bcfb237408a1712cf15c8e191da2e;p=thirdparty%2Fbind9.git 1671. [contrib] queryperf: add NAPTR to the list of known types. --- diff --git a/CHANGES b/CHANGES index 4e49b158f77..22958dac992 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +1671. [contrib] queryperf: add NAPTR to the list of known types. + 1670. [func] Log UPDATE requests to slave zones without an acl as "disabled" at debug level 3. [RT# 11657] diff --git a/contrib/queryperf/queryperf.c b/contrib/queryperf/queryperf.c index 89a92ec0e86..4656c0a35b8 100644 --- a/contrib/queryperf/queryperf.c +++ b/contrib/queryperf/queryperf.c @@ -18,7 +18,7 @@ /*** *** DNS Query Performance Testing Tool (queryperf.c) *** - *** Version $Id: queryperf.c,v 1.1.1.2.2.5.4.2 2004/05/13 05:49:29 jinmei Exp $ + *** Version $Id: queryperf.c,v 1.1.1.2.2.5.4.3 2004/06/21 00:45:30 marka Exp $ *** *** Stephen Jacob ***/ @@ -79,13 +79,13 @@ enum directives_enum { V_SERVER, V_PORT, V_MAXQUERIES, V_MAXWAIT }; #define QTYPE_STRINGS { \ "A", "NS", "MD", "MF", "CNAME", "SOA", "MB", "MG", \ "MR", "NULL", "WKS", "PTR", "HINFO", "MINFO", "MX", "TXT", \ - "AAAA", "SRV", "A6", "AXFR", "MAILB", "MAILA", "*", "ANY" \ + "AAAA", "SRV", "NAPTR", "A6", "AXFR", "MAILB", "MAILA", "*", "ANY" \ } #define QTYPE_CODES { \ 1, 2, 3, 4, 5, 6, 7, 8, \ 9, 10, 11, 12, 13, 14, 15, 16, \ - 28, 33, 38, 252, 253, 254, 255, 255 \ + 28, 33, 35, 38, 252, 253, 254, 255, 255 \ } #define RCODE_STRINGS { \ @@ -186,7 +186,7 @@ void show_startup_info(void) { printf("\n" "DNS Query Performance Testing Tool\n" -"Version: $Id: queryperf.c,v 1.1.1.2.2.5.4.2 2004/05/13 05:49:29 jinmei Exp $\n" +"Version: $Id: queryperf.c,v 1.1.1.2.2.5.4.3 2004/06/21 00:45:30 marka Exp $\n" "\n"); }