]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1671. [contrib] queryperf: add NAPTR to the list of known types.
authorMark Andrews <marka@isc.org>
Mon, 21 Jun 2004 00:45:30 +0000 (00:45 +0000)
committerMark Andrews <marka@isc.org>
Mon, 21 Jun 2004 00:45:30 +0000 (00:45 +0000)
CHANGES
contrib/queryperf/queryperf.c

diff --git a/CHANGES b/CHANGES
index 4e49b158f773f7f3dae9fcce9f47e5ebef4eb04a..22958dac992cbeb784fa4b825a404b6349c8c0c7 100644 (file)
--- 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]
 
index 89a92ec0e86bb2fe769958932b970aa9e2b19f74..4656c0a35b8e865e528cd3d2e8cf4a1bbcb88c69 100644 (file)
@@ -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 <sj@nominum.com>
  ***/
@@ -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");
 }