/bind-9.6-ESV-R11/bin/named/ |
H A D | listenlist.c | 27 #include <dns/acl.h> 36 dns_acl_t *acl, ns_listenelt_t **target) 46 elt->acl = acl; 53 if (elt->acl != NULL) 54 dns_acl_detach(&elt->acl); 107 dns_acl_t *acl = NULL; local 113 result = dns_acl_any(mctx, &acl); 115 result = dns_acl_none(mctx, &acl); 119 result = ns_listenelt_create(mctx, port, acl, 35 ns_listenelt_create(isc_mem_t *mctx, in_port_t port, dns_acl_t *acl, ns_listenelt_t **target) argument [all...] |
H A D | sortlist.c | 27 #include <dns/acl.h> 35 ns_sortlist_setup(dns_acl_t *acl, isc_netaddr_t *clientaddr, argument 40 if (acl == NULL) 43 for (i = 0; i < acl->length; i++) { 48 dns_aclelement_t *e = &acl->elements[i];
|
H A D | controlconf.c | 96 dns_acl_t * acl; member in struct:controllistener 149 if (listener->acl != NULL) 150 dns_acl_detach(&listener->acl); 221 address_ok(isc_sockaddr_t *sockaddr, dns_acl_t *acl) { argument 228 result = dns_acl_match(&netaddr, NULL, acl, 596 !address_ok(&peeraddr, listener->acl)) { 1011 dns_acl_detach(&listener->acl); 1012 dns_acl_attach(new_acl, &listener->acl); 1014 /* XXXDCL say the old acl is still used? */ 1017 "couldn't install new acl fo [all...] |
H A D | statschannel.c | 58 dns_acl_t *acl; member in struct:ns_statschannel 1053 if (dns_acl_match(&netaddr, NULL, listener->acl, &ns_g_server->aclenv, 1076 dns_acl_detach(&listener->acl); 1101 listener->acl = NULL; 1122 dns_acl_attach(new_acl, &listener->acl); 1163 if (listener->acl != NULL) 1164 dns_acl_detach(&listener->acl); 1213 dns_acl_detach(&listener->acl); 1214 dns_acl_attach(new_acl, &listener->acl); 1220 "couldn't install new acl fo [all...] |
H A D | zoneconf.c | 32 #include <dns/acl.h> 83 dns_acl_t **aclp = NULL, *acl = NULL; local 161 dns_zone_getmctx(zone), 0, &acl); 164 (*setzacl)(zone, acl); 168 dns_acl_attach(acl, aclp); 170 dns_acl_detach(&acl);
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | acl.c | 29 #include <dns/acl.h> 40 dns_acl_t *acl; local 48 acl = isc_mem_get(mctx, sizeof(*acl)); 49 if (acl == NULL) 51 acl->mctx = mctx; 52 acl->name = NULL; 54 result = isc_refcount_init(&acl->refcount, 1); 56 isc_mem_put(mctx, acl, sizeof(*acl)); 101 dns_acl_t *acl = NULL; local 137 dns_acl_isanyornone(dns_acl_t *acl, isc_boolean_t pos) argument 164 dns_acl_isany(dns_acl_t *acl) argument 173 dns_acl_isnone(dns_acl_t *acl) argument 185 dns_acl_match(const isc_netaddr_t *reqaddr, const dns_name_t *reqsigner, const dns_acl_t *acl, const dns_aclenv_t *env, int *match, const dns_aclelement_t **matchelt) argument 471 dns_acl_t *acl = *aclp; local [all...] |
H A D | iptable.c | 24 #include <dns/acl.h>
|
/bind-9.6-ESV-R11/bin/named/include/named/ |
H A D | listenlist.h | 49 dns_acl_t * acl; member in struct:ns_listenelt 65 dns_acl_t *acl, ns_listenelt_t **target);
|
H A D | sortlist.h | 45 ns_sortlist_setup(dns_acl_t *acl, isc_netaddr_t *clientaddr, 48 * Find the sortlist statement in 'acl' that applies to 'clientaddr', if any. 80 * Find the sortlist statement in 'acl' that applies to 'clientaddr', if any.
|
H A D | client.h | 280 dns_acl_t *acl, 286 * Check the current client request against 'acl'. If 'acl' 301 *\li 'acl' points to a valid ACL, or is NULL. 312 const char *opname, dns_acl_t *acl, 323 *\li 'acl' points to a valid ACL, or is NULL.
|
H A D | server.h | 32 #include <dns/acl.h>
|
/bind-9.6-ESV-R11/bin/tests/system/acl/ns2/ |
H A D | named4.conf | 47 acl rejectkeys { 51 acl rejectaddrs { 55 acl check1 { !key one; 10.53.0.1; }; 57 acl check2 { !key two; 10.53.0.2; };
|
H A D | named3.conf | 52 acl reject { 56 acl accept {
|
/bind-9.6-ESV-R11/lib/dns/include/dns/ |
H A D | acl.h | 27 /*! \file dns/acl.h 123 dns_acl_isany(dns_acl_t *acl); 129 dns_acl_isnone(dns_acl_t *acl); 155 * Return #ISC_TRUE iff the acl 'a' is considered insecure, that is, 178 const dns_acl_t *acl, 187 * against 'acl'. 'reqsigner' may be NULL.
|
H A D | zone.h | 714 dns_zone_setnotifyacl(dns_zone_t *zone, dns_acl_t *acl); 716 * Sets the notify acl list for the zone. 720 *\li 'acl' to be a valid acl. 724 dns_zone_setqueryacl(dns_zone_t *zone, dns_acl_t *acl); 726 * Sets the query acl list for the zone. 730 *\li 'acl' to be a valid acl. 734 dns_zone_setqueryonacl(dns_zone_t *zone, dns_acl_t *acl); 736 * Sets the query-on acl lis [all...] |
/bind-9.6-ESV-R11/bin/tests/system/allow_query/ns2/ |
H A D | named40.conf | 21 acl accept { 10.53.0.2; }; 23 acl badaccept { 10.53.0.1; };
|
H A D | named07.conf | 21 acl accept { 10.53.0.2; };
|
H A D | named08.conf | 21 acl accept { 10.53.0.1; };
|
H A D | named09.conf | 21 acl accept { 10.53.0.2; };
|
H A D | named27.conf | 21 acl accept { 10.53.0.2; };
|
H A D | named28.conf | 21 acl accept { 10.53.0.1; };
|
H A D | named29.conf | 21 acl accept { 10.53.0.2; };
|
/bind-9.6-ESV-R11/lib/bind9/ |
H A D | check.c | 39 #include <dns/acl.h> 373 dns_acl_t *acl = NULL; local 390 actx, mctx, 0, &acl); 391 if (acl != NULL) 392 dns_acl_detach(&acl); 427 dns_acl_t *acl = NULL; local 456 acl = NULL; 470 actx, mctx, 0, &acl); 475 if (acl == NULL) 478 if (recursion == ISC_FALSE && !dns_acl_isnone(acl)) { 2150 dns_acl_t *acl = NULL; local 2372 const cfg_obj_t *acl = cfg_listelt_value(elt); local 2422 const cfg_obj_t *acl = cfg_listelt_value(elt); local [all...] |
/bind-9.6-ESV-R11/lib/isccfg/ |
H A D | aclconf.c | 29 #include <dns/acl.h> 55 * Find the definition of the named acl whose name is "name". 63 result = cfg_map_get(cctx, "acl", &acls); 69 const cfg_obj_t *acl = cfg_listelt_value(elt); local 70 const char *aclname = cfg_obj_asstring(cfg_tuple_get(acl, "name")); 73 *ret = cfg_tuple_get(acl, "value"); 101 "acl loop detected: %s", aclname);
|
/bind-9.6-ESV-R11/bin/tests/system/xfer/ns2/ |
H A D | named.conf | 43 acl tzkey {
|