From 7b4dcbb89b71b17f5c16ca19a0e705e09509f063 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 29 Oct 1999 03:31:13 +0000 Subject: [PATCH] add DNS_R_WAIT --- lib/dns/include/dns/result.h | 3 ++- lib/dns/result.c | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/dns/include/dns/result.h b/lib/dns/include/dns/result.h index a0bfdd0e00..1ba776cd03 100644 --- a/lib/dns/include/dns/result.h +++ b/lib/dns/include/dns/result.h @@ -100,8 +100,9 @@ typedef isc_result_t dns_result_t; /* XXXRTH for legacy use only */ #define DNS_R_NOTLOADED (ISC_RESULTCLASS_DNS + 50) #define DNS_R_NCACHENXDOMAIN (ISC_RESULTCLASS_DNS + 51) #define DNS_R_NCACHENXRRSET (ISC_RESULTCLASS_DNS + 52) +#define DNS_R_WAIT (ISC_RESULTCLASS_DNS + 53) -#define DNS_R_NRESULTS 53 /* Number of results */ +#define DNS_R_NRESULTS 54 /* Number of results */ /* * DNS wire format rcodes diff --git a/lib/dns/result.c b/lib/dns/result.c index 9c1e13c28c..f0c896512d 100644 --- a/lib/dns/result.c +++ b/lib/dns/result.c @@ -80,6 +80,7 @@ static char *text[DNS_R_NRESULTS] = { "zone not loaded", /* 50 */ "ncache nxdomain", /* 51 */ "ncache nxrrset", /* 52 */ + "wait", /* 53 */ }; static char *rcode_text[DNS_R_NRCODERESULTS] = {