2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

1671. [contrib] queryperf: add NAPTR to the list on known types.

This commit is contained in:
Mark Andrews 2004-06-21 00:03:16 +00:00
parent 18afcb7028
commit 1bf8f4b77d
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,5 @@
1671. [contrib] queryperf: add NAPTR to the list on known types.
1670. [func] Log UPDATE requests to slave zones without an acl as
"disabled" at debug level 3. [RT# 11657]

View File

@ -18,7 +18,7 @@
/***
*** DNS Query Performance Testing Tool (queryperf.c)
***
*** Version $Id: queryperf.c,v 1.9 2004/05/12 07:04:58 jinmei Exp $
*** Version $Id: queryperf.c,v 1.10 2004/06/21 00:03:16 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.9 2004/05/12 07:04:58 jinmei Exp $\n"
"Version: $Id: queryperf.c,v 1.10 2004/06/21 00:03:16 marka Exp $\n"
"\n");
}