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