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