From: Mark Andrews Date: Mon, 21 Jun 2004 00:45:24 +0000 (+0000) Subject: 1671. [contrib] queryperf: add NAPTR to the list of known types. X-Git-Tag: v9.2.4rc6~16 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=34ab52a2978b41c131092e4cad4a3ab7559d35ee;p=thirdparty%2Fbind9.git 1671. [contrib] queryperf: add NAPTR to the list of known types. --- diff --git a/CHANGES b/CHANGES index 3434983fa4f..1dd2635cf90 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +1671. [contrib] queryperf: add NAPTR to the list of known types. + 1669. [bug] Restore "update forwarding denied" log messages accidentally suppressed by change #1633. [RT# 11657] diff --git a/contrib/queryperf/queryperf.c b/contrib/queryperf/queryperf.c index d7b11140651..98cdd1b18a8 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 2003/05/12 07:07:13 marka Exp $ + *** Version $Id: queryperf.c,v 1.1.1.2.2.6 2004/06/21 00:45:24 marka Exp $ *** *** Stephen Jacob ***/ @@ -75,13 +75,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 { \ @@ -180,7 +180,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 2003/05/12 07:07:13 marka Exp $\n" +"Version: $Id: queryperf.c,v 1.1.1.2.2.6 2004/06/21 00:45:24 marka Exp $\n" "\n"); }