Lines Matching defs:aclenv
622 * Check whether an address/signer is allowed by a given acl/aclenv.
626 dns_aclenv_t *aclenv) {
633 result = dns_acl_match(addr, signer, acl, aclenv, &match, NULL);
726 dns__aclenv_destroy(dns_aclenv_t *aclenv) {
727 REQUIRE(VALID_ACLENV(aclenv));
729 aclenv->magic = 0;
732 * The last reference to the aclenv has been detached, so nobody should
733 * be reading from this aclenv. We can destroy the localhost and
737 dns_acl_detach(&aclenv->localhost);
738 dns_acl_detach(&aclenv->localnets);
740 isc_mem_putanddetach(&aclenv->mctx, aclenv, sizeof(*aclenv));