mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-16 13:03:46 -04:00
add DNS_R_WAIT
This commit is contained in:
parent
d4adf00b63
commit
7b4dcbb89b
2 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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] = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue