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

add DNS_R_ALIAS

This commit is contained in:
Bob Halley 2000-01-21 02:48:42 +00:00
parent 7fc55ea79f
commit f53e43c37f
2 changed files with 3 additions and 1 deletions

View File

@ -102,8 +102,9 @@ ISC_LANG_BEGINDECLS
#define DNS_R_NOTVERIFIEDYET (ISC_RESULTCLASS_DNS + 54) #define DNS_R_NOTVERIFIEDYET (ISC_RESULTCLASS_DNS + 54)
#define DNS_R_NOIDENTITY (ISC_RESULTCLASS_DNS + 55) #define DNS_R_NOIDENTITY (ISC_RESULTCLASS_DNS + 55)
#define DNS_R_NOJOURNAL (ISC_RESULTCLASS_DNS + 56) #define DNS_R_NOJOURNAL (ISC_RESULTCLASS_DNS + 56)
#define DNS_R_ALIAS (ISC_RESULTCLASS_DNS + 57)
#define DNS_R_NRESULTS 57 /* Number of results */ #define DNS_R_NRESULTS 58 /* Number of results */
/* /*
* DNS wire format rcodes * DNS wire format rcodes

View File

@ -84,6 +84,7 @@ static char *text[DNS_R_NRESULTS] = {
"not verified yet", /* 54 */ "not verified yet", /* 54 */
"no identity", /* 55 */ "no identity", /* 55 */
"no journal", /* 56 */ "no journal", /* 56 */
"alias", /* 57 */
}; };
static char *rcode_text[DNS_R_NRCODERESULTS] = { static char *rcode_text[DNS_R_NRCODERESULTS] = {