No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / bind / dist / lib / isccfg / dnsconf.c
blob3192439c4bcbdf071665d98d8f6f47d62c0ae678
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
19 /* Id: dnsconf.c,v 1.4 2009/09/02 23:48:03 tbox Exp */
21 /*! \file */
23 #include <config.h>
25 #include <isccfg/cfg.h>
26 #include <isccfg/grammar.h>
28 /*%
29 * A trusted key, as used in the "trusted-keys" statement.
31 static cfg_tuplefielddef_t trustedkey_fields[] = {
32 { "name", &cfg_type_astring, 0 },
33 { "flags", &cfg_type_uint32, 0 },
34 { "protocol", &cfg_type_uint32, 0 },
35 { "algorithm", &cfg_type_uint32, 0 },
36 { "key", &cfg_type_qstring, 0 },
37 { NULL, NULL, 0 }
40 static cfg_type_t cfg_type_trustedkey = {
41 "trustedkey", cfg_parse_tuple, cfg_print_tuple, cfg_doc_tuple,
42 &cfg_rep_tuple, trustedkey_fields
45 static cfg_type_t cfg_type_trustedkeys = {
46 "trusted-keys", cfg_parse_bracketed_list, cfg_print_bracketed_list,
47 cfg_doc_bracketed_list, &cfg_rep_list, &cfg_type_trustedkey
50 /*%
51 * Clauses that can be found within the top level of the dns.conf
52 * file only.
54 static cfg_clausedef_t
55 dnsconf_clauses[] = {
56 { "trusted-keys", &cfg_type_trustedkeys, CFG_CLAUSEFLAG_MULTI },
57 { NULL, NULL, 0 }
60 /*% The top-level dns.conf syntax. */
62 static cfg_clausedef_t *
63 dnsconf_clausesets[] = {
64 dnsconf_clauses,
65 NULL
68 LIBISCCFG_EXTERNAL_DATA cfg_type_t cfg_type_dnsconf = {
69 "dnsconf", cfg_parse_mapbody, cfg_print_mapbody, cfg_doc_mapbody,
70 &cfg_rep_map, dnsconf_clausesets