Lines Matching refs:aclenv
621 * Check whether an address/signer is allowed by a given acl/aclenv.
625 dns_aclenv_t *aclenv) {
632 result = dns_acl_match(addr, signer, acl, aclenv, &match, NULL);
725 dns__aclenv_destroy(dns_aclenv_t *aclenv) {
726 REQUIRE(VALID_ACLENV(aclenv));
728 aclenv->magic = 0;
731 * The last reference to the aclenv has been detached, so nobody should
732 * be reading from this aclenv. We can destroy the localhost and
736 dns_acl_detach(&aclenv->localhost);
737 dns_acl_detach(&aclenv->localnets);
739 isc_mem_putanddetach(&aclenv->mctx, aclenv, sizeof(*aclenv));