bind - Removed version tag from contrib directory and updated README.DRAGONFLY.
[dragonfly.git] / contrib / bind / lib / isccfg / include / isccfg / aclconf.h
1 /*
2  * Copyright (C) 2004-2007  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: aclconf.h,v 1.10 2007/10/12 04:17:18 each Exp $ */
19
20 #ifndef ISCCFG_ACLCONF_H
21 #define ISCCFG_ACLCONF_H 1
22
23 #include <isc/lang.h>
24
25 #include <isccfg/cfg.h>
26
27 #include <dns/types.h>
28
29 typedef struct cfg_aclconfctx {
30         ISC_LIST(dns_acl_t) named_acl_cache;
31         ISC_LIST(dns_iptable_t) named_iptable_cache;
32 } cfg_aclconfctx_t;
33
34 /***
35  *** Functions
36  ***/
37
38 ISC_LANG_BEGINDECLS
39
40 void
41 cfg_aclconfctx_init(cfg_aclconfctx_t *ctx);
42 /*
43  * Initialize an ACL configuration context.
44  */
45
46 void
47 cfg_aclconfctx_destroy(cfg_aclconfctx_t *ctx);
48 /*
49  * Destroy an ACL configuration context.
50  */
51
52 isc_result_t
53 cfg_acl_fromconfig(const cfg_obj_t *caml,
54                    const cfg_obj_t *cctx,
55                    isc_log_t *lctx,
56                    cfg_aclconfctx_t *ctx,
57                    isc_mem_t *mctx,
58                    unsigned int nest_level,
59                    dns_acl_t **target);
60 /*
61  * Construct a new dns_acl_t from configuration data in 'caml' and
62  * 'cctx'.  Memory is allocated through 'mctx'.
63  *
64  * Any named ACLs referred to within 'caml' will be be converted
65  * into nested dns_acl_t objects.  Multiple references to the same
66  * named ACLs will be converted into shared references to a single
67  * nested dns_acl_t object when the referring objects were created
68  * passing the same ACL configuration context 'ctx'.
69  *
70  * On success, attach '*target' to the new dns_acl_t object.
71  */
72
73 ISC_LANG_ENDDECLS
74
75 #endif /* ISCCFG_ACLCONF_H */