Merge from vendor branch FILE:
[dragonfly.git] / contrib / bind-9.3 / bin / named / include / named / config.h
1 /*
2  * Copyright (C) 2004  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.4 2004/04/20 14:12:10 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(cfg_obj_t **maps, const char* name, cfg_obj_t **obj);
33
34 isc_result_t
35 ns_checknames_get(cfg_obj_t **maps, const char* name, cfg_obj_t **obj);
36
37 int
38 ns_config_listcount(cfg_obj_t *list);
39
40 isc_result_t
41 ns_config_getclass(cfg_obj_t *classobj, dns_rdataclass_t defclass,
42                    dns_rdataclass_t *classp);
43
44 isc_result_t
45 ns_config_gettype(cfg_obj_t *typeobj, dns_rdatatype_t deftype,
46                   dns_rdatatype_t *typep);
47
48 dns_zonetype_t
49 ns_config_getzonetype(cfg_obj_t *zonetypeobj);
50
51 isc_result_t
52 ns_config_getiplist(cfg_obj_t *config, cfg_obj_t *list,
53                     in_port_t defport, isc_mem_t *mctx,
54                     isc_sockaddr_t **addrsp, isc_uint32_t *countp);
55
56 void
57 ns_config_putiplist(isc_mem_t *mctx, isc_sockaddr_t **addrsp,
58                     isc_uint32_t count);
59
60 isc_result_t
61 ns_config_getipandkeylist(cfg_obj_t *config, cfg_obj_t *list, isc_mem_t *mctx,
62                           isc_sockaddr_t **addrsp, dns_name_t ***keys,
63                           isc_uint32_t *countp);
64
65 void
66 ns_config_putipandkeylist(isc_mem_t *mctx, isc_sockaddr_t **addrsp,
67                           dns_name_t ***keys, isc_uint32_t count);
68
69 isc_result_t
70 ns_config_getport(cfg_obj_t *config, in_port_t *portp);
71
72 isc_result_t
73 ns_config_getkeyalgorithm(const char *str, dns_name_t **name);
74
75 #endif /* NAMED_CONFIG_H */