/bind-9.6-ESV-R11/lib/dns/ |
H A D | result.c | 182 "<rcode 11>", /*%< 11 has no macro */ 183 "<rcode 12>", /*%< 12 has no macro */ 184 "<rcode 13>", /*%< 13 has no macro */ 185 "<rcode 14>", /*%< 14 has no macro */ 187 "<rcode 15>", /*%< 15 has no macro */ 232 dns_rcode_t rcode = dns_rcode_servfail; local 242 * Try to supply an appropriate rcode. 246 rcode = dns_rcode_noerror; 270 rcode = dns_rcode_formerr; 273 rcode [all...] |
H A D | rcode.c | 37 #include <dns/rcode.h> 273 dns_rcode_totext(dns_rcode_t rcode, isc_buffer_t *target) { argument 274 return (dns_mnemonic_totext(rcode, target, rcodes)); 286 dns_tsigrcode_totext(dns_rcode_t rcode, isc_buffer_t *target) { argument 287 return (dns_mnemonic_totext(rcode, target, tsigrcodes));
|
H A D | zone.c | 60 #include <dns/rcode.h> 7441 * Unexpected rcode. 7443 if (msg->rcode != dns_rcode_noerror) { 7444 char rcode[128]; local 7447 isc_buffer_init(&rb, rcode, sizeof(rcode)); 7448 (void)dns_rcode_totext(msg->rcode, &rb); 7451 (msg->rcode == dns_rcode_servfail || 7452 msg->rcode == dns_rcode_notimp || 7453 msg->rcode 7730 char rcode[128]; local 9649 char rcode[128]; local 10565 char rcode[128]; local [all...] |
/bind-9.6-ESV-R11/bin/named/ |
H A D | notify.c | 53 dns_rcode_t rcode; local 58 rcode = dns_result_torcode(result); 67 message->rcode = rcode; 68 if (rcode == dns_rcode_noerror)
|
H A D | client.c | 39 #include <dns/rcode.h> 1086 dns_rcode_t rcode; local 1094 rcode = dns_result_torcode(result); 1100 if (rcode == dns_rcode_formerr && 1107 if (dns_rcode_totext(rcode, &b) != ISC_R_SUCCESS) 1141 message->rcode = rcode; 1152 if (rcode == dns_rcode_formerr) { 1584 client->message->rcode = dns_rcode_noerror;
|
/bind-9.6-ESV-R11/lib/dns/rdata/any_255/ |
H A D | tsig_250.c | 34 dns_rcode_t rcode; local 105 if (dns_tsigrcode_fromtext(&rcode, &token.value.as_textregion) 113 rcode = (dns_rcode_t)i; 115 RETERR(uint16_tobuffer(rcode, target));
|
/bind-9.6-ESV-R11/lib/dns/rdata/generic/ |
H A D | tkey_249.c | 34 dns_rcode_t rcode; local 85 if (dns_tsigrcode_fromtext(&rcode, &token.value.as_textregion) 93 rcode = (dns_rcode_t)i; 95 RETERR(uint16_tobuffer(rcode, target));
|
/bind-9.6-ESV-R11/bin/dig/ |
H A D | host.c | 128 rcode_totext(dns_rcode_t rcode) argument 136 if (rcode >= (sizeof(rcodetext)/sizeof(rcodetext[0]))) { 137 snprintf(buf, sizeof(buf), "?%u", rcode); 140 totext.consttext = rcodetext[rcode]; 446 if (msg->rcode != 0) { 453 (msg->rcode != dns_rcode_nxdomain) ? namestr : 454 query->lookup->textname, msg->rcode, 455 rcode_totext(msg->rcode)); 458 (msg->rcode != dns_rcode_nxdomain) ? namestr : 459 query->lookup->textname, msg->rcode, [all...] |
H A D | nslookup.c | 135 rcode_totext(dns_rcode_t rcode) argument 143 if (rcode >= (sizeof(rcodetext)/sizeof(rcodetext[0]))) { 144 snprintf(buf, sizeof(buf), "?%u", rcode); 147 totext.consttext = rcodetext[rcode]; 432 if (msg->rcode != 0) { 437 nametext, rcode_totext(msg->rcode)); 438 debug("returning with rcode == 0");
|
H A D | dig.c | 114 rcode_totext(dns_rcode_t rcode) argument 122 if (rcode >= (sizeof(rcodetext)/sizeof(rcodetext[0]))) { 123 snprintf(buf, sizeof(buf), "?%u", rcode); 126 totext.consttext = rcodetext[rcode]; 495 rcode_totext(msg->rcode), 530 (msg->rcode == dns_rcode_formerr || 531 msg->rcode == dns_rcode_notimp)) 534 rcode_totext(msg->rcode),
|
/bind-9.6-ESV-R11/lib/dns/include/dns/ |
H A D | message.h | 187 dns_rcode_t rcode; member in struct:dns_message
|
/bind-9.6-ESV-R11/contrib/queryperf/ |
H A D | queryperf.c | 289 " -c print the number of packets with each rcode\n" 1429 *p++ = 0; /* extended rcode */ 1547 unsigned int rcode) 1590 "[query=%s/%d, rcode=%u]\n", rtt, qname, qtype, rcode); 1605 register_response(unsigned short int id, unsigned int rcode, char *qname, argument 1617 register_rtt(&qi->sent_timestamp, qname, qtype, rcode); 1632 rcode); 1635 printf("> %s %s\n", rcode_strings[rcode], 1643 rcodecounts[rcode] 1546 register_rtt(struct timeval *timestamp, char *qname, int qtype, unsigned int rcode) argument [all...] |