| /src/external/mpl/bind/dist/bin/tests/system/cipher-suites/ |
| tests_cipher_suites.py | 44 "qname,ns,rcode", 46 ("example.", 2, dns.rcode.NOERROR), 47 ("example.", 3, dns.rcode.NOERROR), 48 ("example.", 4, dns.rcode.NOERROR), 49 ("example-aes-128.", 2, dns.rcode.NOERROR), 50 ("example-aes-256.", 3, dns.rcode.NOERROR), 54 dns.rcode.NOERROR, 57 ("example-aes-256", 2, dns.rcode.SERVFAIL), 61 dns.rcode.SERVFAIL, 64 ("example-aes-128", 3, dns.rcode.SERVFAIL) [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/qmin/ans3/ |
| ans.py | 14 import dns.rcode 27 rcode = dns.rcode.NXDOMAIN variable in class:ZoopBoingBadHandler 32 rcode = dns.rcode.FORMERR variable in class:ZoopBoingUglyHandler
|
| /src/external/mpl/bind/dist/bin/tests/system/rpzextra/ |
| tests_rpzextra.py | 19 import dns.rcode 35 "qname,source,rcode", 41 ("baddomain.", "10.53.0.1", dns.rcode.NXDOMAIN), 42 ("gooddomain.", "10.53.0.1", dns.rcode.NOERROR), 43 ("allowed.", "10.53.0.1", dns.rcode.NOERROR), 48 ("baddomain.", "10.53.0.2", dns.rcode.NOERROR), 49 ("gooddomain.", "10.53.0.2", dns.rcode.NOERROR), 50 ("allowed.", "10.53.0.2", dns.rcode.NXDOMAIN), 55 ("baddomain.", "10.53.0.3", dns.rcode.NOERROR), 56 ("gooddomain.", "10.53.0.3", dns.rcode.NOERROR) [all...] |
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| dso-utils.h | 21 void dso_simple_response(comm_t *NONNULL comm, message_t *NULLABLE message, const dns_wire_t *NONNULL wire, int rcode); 23 int rcode, uint32_t milliseconds);
|
| dso-utils.c | 25 dso_simple_response(comm_t *comm, message_t *message, const dns_wire_t *wire, int rcode) 37 dns_rcode_set(&response, rcode); 71 dso_send_simple_response(dso_state_t *dso, int rcode, const dns_wire_t *header, const char *UNUSED rcode_name) 73 dso_simple_response((comm_t *)dso->transport, NULL, header, rcode); 87 dso_retry_delay_response(comm_t *comm, message_t *message, const dns_wire_t *wire, int rcode, uint32_t milliseconds) 104 dns_rcode_set(&response, rcode);
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| rcode.h | 1 /* $NetBSD: rcode.h,v 1.7 2025/01/26 16:25:28 christos Exp $ */ 18 /*! \file dns/rcode.h */ 42 dns_rcode_totext(dns_rcode_t rcode, isc_buffer_t *target); 44 * Put a textual representation of error 'rcode' into 'target'. 47 *\li 'rcode' is a valid rcode. 76 dns_tsigrcode_totext(dns_rcode_t rcode, isc_buffer_t *target); 78 * Put a textual representation of TSIG/TKEY error 'rcode' into 'target'. 81 *\li 'rcode' is a valid TSIG/TKEY error code.
|
| result.h | 31 dns_result_fromrcode(dns_rcode_t rcode);
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| rcode.h | 1 /* $NetBSD: rcode.h,v 1.1 2024/02/18 20:57:37 christos Exp $ */ 19 /*! \file dns/rcode.h */ 43 dns_rcode_totext(dns_rcode_t rcode, isc_buffer_t *target); 45 * Put a textual representation of error 'rcode' into 'target'. 48 *\li 'rcode' is a valid rcode. 77 dns_tsigrcode_totext(dns_rcode_t rcode, isc_buffer_t *target); 79 * Put a textual representation of TSIG/TKEY error 'rcode' into 'target'. 82 *\li 'rcode' is a valid TSIG/TKEY error code.
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| result.c | 135 "unexpected RCODE", /*%< 89 DNS_R_UNEXPECTEDRCODE */ 333 "<rcode 11>", /*%< 11 DNS_R_RCODE11 */ 334 "<rcode 12>", /*%< 12 DNS_R_RCODE12 */ 335 "<rcode 13>", /*%< 13 DNS_R_RCODE13 */ 336 "<rcode 14>", /*%< 14 DNS_R_RCODE14 */ 338 "<rcode 15>", /*%< 15 DNS_R_RCODE15 */ 403 dns_rcode_t rcode = dns_rcode_servfail; local 414 * Try to supply an appropriate rcode. 418 rcode = dns_rcode_noerror; 442 rcode = dns_rcode_formerr [all...] |
| /src/external/bsd/libbind/dist/bsd/ |
| writev.c | 46 int i, rcode = 0, count = 0; local 49 rcode = write(fd, tv->iov_base, tv->iov_len); 51 if (rcode < 0) 54 count += rcode; 58 return (rcode);
|
| /src/external/mpl/bind/dist/bin/tests/system/reclimit/ans7/ |
| ans.pl | 43 my ($rcode, @ans, @auth, @add); 57 $rcode = "NOERROR"; 60 $rcode = "NOERROR"; 62 $rcode = "REFUSED"; 66 return ($rcode, \@ans, \@auth, \@add, { aa => 1 });
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/ |
| compat.py | 15 import dns.rcode 19 # In dnspython>=2.0.0, dns.rcode.Rcode class is available 21 dns_rcode = dns.rcode.Rcode # type: Any 24 # from dns.rcode 25 dns_rcode = dns.rcode
|
| check.py | 19 import dns.rcode 26 def rcode(message: dns.message.Message, expected_rcode) -> None: function 27 assert message.rcode() == expected_rcode, str(message) 31 rcode(message, dns_rcode.NOERROR) 35 rcode(message, dns_rcode.NOTIMP) 39 rcode(message, dns_rcode.REFUSED) 43 rcode(message, dns_rcode.SERVFAIL) 134 assert res1.rcode() == res2.rcode() 140 assert res1.rcode() == res2.rcode( [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/qmin/ |
| qmin_ans.py | 18 import dns.rcode 60 preparing responses, but override the RCODE returned for empty 67 def rcode(self) -> dns.rcode.Rcode: member in class:EntRcodeChanger 78 qctx.response.rcode() == dns.rcode.NOERROR 84 qctx.response.set_rcode(self.rcode)
|
| /src/external/mpl/bind/dist/bin/tests/system/serve-stale/ans2/ |
| ans.pl | 80 my ($rcode, @ans, @auth, @add); 93 $rcode = "NOERROR"; 94 return ($rcode, \@ans, \@auth, \@add, { aa => 1 }); 101 $rcode = "NOERROR"; 102 return ($rcode, \@ans, \@auth, \@add, { aa => 1 }); 110 $rcode = "NOERROR"; 111 return ($rcode, \@ans, \@auth, \@add, { aa => 1 }); 132 $rcode = "NOERROR"; 146 $rcode = "NOERROR"; 150 $rcode = "NOERROR" [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/dnssec/ |
| dnssec_update_test.pl | 75 my $rcode = $reply->header->rcode; 76 assert($rcode eq $expected, "expected $expected, got $rcode");
|
| /src/external/mpl/bind/dist/bin/tests/system/qmin/ans4/ |
| ans.py | 16 import dns.rcode 74 rcode = dns.rcode.NXDOMAIN variable in class:IckyPtangZoopBoingBadHandler 79 rcode = dns.rcode.FORMERR variable in class:IckyPtangZoopBoingUglyHandler
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| config_reg.c | 97 LONG rcode; local 147 rcode = RegSetValueEx(key, valuename, 0, type, data, cb_data); 148 if (rcode) 172 rcode = RegSetValueEx(key, valuename, 0, type, data, cb_data); 173 if (rcode) 194 rcode = RegSetValueEx(key, valuename, 0, type, (BYTE *)&dwData, sizeof(DWORD)); 195 if (rcode) 261 LONG rcode = ERROR_MORE_DATA; local 277 rcode = RegQueryValueExA(key, valuename, NULL, &type, pbuffer, &cb_data); 279 if (rcode == ERROR_SUCCESS & 502 LONG rcode; local 533 LONG rcode; local 600 LONG rcode; local [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/reclimit/ans2/ |
| ans.pl | 63 my ($rcode, @ans, @auth, @add, $wait); 78 $rcode = "NOERROR"; 83 $rcode = "NOERROR"; 91 $rcode = "NOERROR"; 108 $rcode = "NOERROR"; 124 $rcode = "NOERROR"; 131 $rcode = "NOERROR"; 141 $rcode = "NOERROR"; 143 $rcode = "NXDOMAIN"; 146 return ($rcode, \@ans, \@auth, \@add, $wait) [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/reclimit/ans4/ |
| ans.pl | 63 my ($rcode, @ans, @auth, @add, $wait); 78 $rcode = "NOERROR"; 83 $rcode = "NOERROR"; 92 $rcode = "NOERROR"; 107 $rcode = "NOERROR"; 124 $rcode = "NOERROR"; 132 $rcode = "NOERROR"; 144 $rcode = "NOERROR"; 146 $rcode = "NXDOMAIN"; 150 return ($rcode, \@ans, \@auth, \@add, $wait) [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/qmin/ans2/ |
| ans.py | 18 import dns.rcode 44 rcode = dns.rcode.NXDOMAIN variable in class:BadHandler 49 rcode = dns.rcode.FORMERR variable in class:UglyHandler 70 response.set_rcode(dns.rcode.NOERROR)
|
| /src/external/mpl/bind/dist/bin/tests/system/dialup/ |
| tests_dialup_zone_transfer.py | 36 if response.rcode() != dns.rcode.SERVFAIL:
|
| /src/external/mpl/bind/dist/bin/tests/system/dispatch/ans3/ |
| ans.py | 15 import dns.rcode 38 server = AsyncDnsServer(default_rcode=dns.rcode.NOERROR)
|
| /src/external/bsd/unbound/dist/libunbound/ |
| worker.h | 92 void libworker_fg_done_cb(void* arg, int rcode, sldns_buffer* buf, 96 void libworker_bg_done_cb(void* arg, int rcode, sldns_buffer* buf, 100 void libworker_event_done_cb(void* arg, int rcode, struct sldns_buffer* buf,
|
| /src/external/ibm-public/postfix/dist/src/dns/ |
| test_dns_lookup.c | 76 int rcode; local 121 &rcode, lflags, types)) { 123 msg_warn("%s (rcode=%d)", vstring_str(why), rcode);
|