diff --git a/CHANGES b/CHANGES index 78abdb9d00..d1e58a1fbc 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,8 @@ 1452. [bug] Bad #ifdef, ISC_RFC2335 -> ISC_RFC2535. +1423. [contrib] queryperf: added A6 and SRV. + 1418. [bug] 'rndc reconfig' did not cause new slaves to load. 1408. [bug] distclean was not complete. [RT #4700] diff --git a/contrib/queryperf/queryperf.c b/contrib/queryperf/queryperf.c index 1092b12554..d7b1114065 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.4 2003/05/12 03:43:03 marka Exp $ + *** Version $Id: queryperf.c,v 1.1.1.2.2.5 2003/05/12 07:07:13 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", "AXFR", "MAILB", "MAILA", "*", "ANY" \ + "AAAA", "SRV", "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, 252, 253, 254, 255, 255 \ + 28, 33, 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.4 2003/05/12 03:43:03 marka Exp $\n" +"Version: $Id: queryperf.c,v 1.1.1.2.2.5 2003/05/12 07:07:13 marka Exp $\n" "\n"); }