2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

new result code DNS_R_UPTODATE

This commit is contained in:
Andreas Gustafsson
1999-08-20 06:10:31 +00:00
parent 8dec0e1a3e
commit 308c7ad5f6
2 changed files with 3 additions and 1 deletions

View File

@@ -84,8 +84,9 @@ typedef isc_result_t dns_result_t; /* XXXRTH for legacy use only */
#define DNS_R_ZONECUT (ISC_RESULTCLASS_DNS + 34) #define DNS_R_ZONECUT (ISC_RESULTCLASS_DNS + 34)
#define DNS_R_BADZONE (ISC_RESULTCLASS_DNS + 35) /* XXX MPA*/ #define DNS_R_BADZONE (ISC_RESULTCLASS_DNS + 35) /* XXX MPA*/
#define DNS_R_MOREDATA (ISC_RESULTCLASS_DNS + 36) #define DNS_R_MOREDATA (ISC_RESULTCLASS_DNS + 36)
#define DNS_R_UPTODATE (ISC_RESULTCLASS_DNS + 37)
#define DNS_R_NRESULTS 37 /* Number of results */ #define DNS_R_NRESULTS 38 /* Number of results */
/* /*
* DNS wire format rcodes * DNS wire format rcodes

View File

@@ -64,6 +64,7 @@ static char *text[DNS_R_NRESULTS] = {
"zonecut", /* 34 */ "zonecut", /* 34 */
"bad zone", /* 35 */ "bad zone", /* 35 */
"more data", /* 36 */ "more data", /* 36 */
"up to date", /* 37 */
}; };
static char *rcode_text[DNS_R_NRCODERESULTS] = { static char *rcode_text[DNS_R_NRCODERESULTS] = {