add DNS_R_MOREDATA

This commit is contained in:
Bob Halley
1999-06-28 23:36:00 +00:00
parent 1292abfde9
commit 137ae8a892
2 changed files with 3 additions and 1 deletions

View File

@@ -76,8 +76,9 @@ typedef isc_result_t dns_result_t; /* XXXRTH for legacy use only */
#define DNS_R_TIMEDOUT (ISC_RESULTCLASS_DNS + 47)
#define DNS_R_CANCELED (ISC_RESULTCLASS_DNS + 48)
#define DNS_R_UNEXPECTED (ISC_RESULTCLASS_DNS + 49)
#define DNS_R_MOREDATA (ISC_RESULTCLASS_DNS + 50)
#define DNS_R_NRESULTS 50 /* Number of results */
#define DNS_R_NRESULTS 51 /* Number of results */
char * dns_result_totext(dns_result_t);
void dns_result_register(void);

View File

@@ -77,6 +77,7 @@ static char *text[DNS_R_NRESULTS] = {
"timed out", /* 47 */
"canceled", /* 48 */
"unexpected error", /* 49 */
"more data", /* 50 */
};
#define DNS_RESULT_RESULTSET 2