Merge from vendor branch LESS:
[dragonfly.git] / contrib / bind-9.3 / bin / named / include / named / zoneconf.h
1 /*
2  * Copyright (C) 2004, 2006  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-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: zoneconf.h,v 1.16.2.2.8.3 2006/03/02 00:37:20 marka Exp $ */
19
20 #ifndef NS_ZONECONF_H
21 #define NS_ZONECONF_H 1
22
23 #include <isc/lang.h>
24 #include <isc/types.h>
25
26 #include <isccfg/cfg.h>
27
28 #include <named/aclconf.h>
29
30 ISC_LANG_BEGINDECLS
31
32 isc_result_t
33 ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig,
34                   const cfg_obj_t *zconfig, ns_aclconfctx_t *ac,
35                   dns_zone_t *zone);
36 /*
37  * Configure or reconfigure a zone according to the named.conf
38  * data in 'cctx' and 'czone'.
39  *
40  * The zone origin is not configured, it is assumed to have been set
41  * at zone creation time.
42  *
43  * Require:
44  *      'lctx' to be initialized or NULL.
45  *      'cctx' to be initialized or NULL.
46  *      'ac' to point to an initialized ns_aclconfctx_t.
47  *      'czone' to be initialized.
48  *      'zone' to be initialized.
49  */
50
51 isc_boolean_t
52 ns_zone_reusable(dns_zone_t *zone, const cfg_obj_t *zconfig);
53 /*
54  * If 'zone' can be safely reconfigured according to the configuration
55  * data in 'zconfig', return ISC_TRUE.  If the configuration data is so
56  * different from the current zone state that the zone needs to be destroyed
57  * and recreated, return ISC_FALSE.
58  */
59
60 ISC_LANG_ENDDECLS
61
62 #endif /* NS_ZONECONF_H */