Import bind-9.3.4
[dragonfly.git] / contrib / bind-9.3 / bin / named / include / named / config.h
1 /*
2  * Copyright (C) 2004, 2006  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2001, 2002  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and 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: config.h,v 1.4.12.6 2006/03/02 00:37:20 marka Exp $ */
19
20 #ifndef NAMED_CONFIG_H
21 #define NAMED_CONFIG_H 1
22
23 #include <isccfg/cfg.h>
24
25 #include <dns/types.h>
26 #include <dns/zone.h>
27
28 isc_result_t
29 ns_config_parsedefaults(cfg_parser_t *parser, cfg_obj_t **conf);
30
31 isc_result_t
32 ns_config_get(const cfg_obj_t **maps, const char* name, const cfg_obj_t **obj);
33
34 isc_result_t
35 ns_checknames_get(const cfg_obj_t **maps, const char* name,
36                   const cfg_obj_t **obj);
37
38 int
39 ns_config_listcount(const cfg_obj_t *list);
40
41 isc_result_t
42 ns_config_getclass(const cfg_obj_t *classobj, dns_rdataclass_t defclass,
43                    dns_rdataclass_t *classp);
44
45 isc_result_t
46 ns_config_gettype(const cfg_obj_t *typeobj, dns_rdatatype_t deftype,
47                   dns_rdatatype_t *typep);
48
49 dns_zonetype_t
50 ns_config_getzonetype(const cfg_obj_t *zonetypeobj);
51
52 isc_result_t
53 ns_config_getiplist(const cfg_obj_t *config, const cfg_obj_t *list,
54                     in_port_t defport, isc_mem_t *mctx,
55                     isc_sockaddr_t **addrsp, isc_uint32_t *countp);
56
57 void
58 ns_config_putiplist(isc_mem_t *mctx, isc_sockaddr_t **addrsp,
59                     isc_uint32_t count);
60
61 isc_result_t
62 ns_config_getipandkeylist(const cfg_obj_t *config, const cfg_obj_t *list,
63                           isc_mem_t *mctx, isc_sockaddr_t **addrsp,
64                           dns_name_t ***keys, isc_uint32_t *countp);
65
66 void
67 ns_config_putipandkeylist(isc_mem_t *mctx, isc_sockaddr_t **addrsp,
68                           dns_name_t ***keys, isc_uint32_t count);
69
70 isc_result_t
71 ns_config_getport(const cfg_obj_t *config, in_port_t *portp);
72
73 isc_result_t
74 ns_config_getkeyalgorithm(const char *str, dns_name_t **name);
75
76 #endif /* NAMED_CONFIG_H */