1224090Sdougb/*
2224090Sdougb * Copyright (C) 2009  Internet Systems Consortium, Inc. ("ISC")
3224090Sdougb *
4224090Sdougb * Permission to use, copy, modify, and/or distribute this software for any
5224090Sdougb * purpose with or without fee is hereby granted, provided that the above
6224090Sdougb * copyright notice and this permission notice appear in all copies.
7224090Sdougb *
8224090Sdougb * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9224090Sdougb * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10224090Sdougb * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11224090Sdougb * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12224090Sdougb * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13224090Sdougb * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14224090Sdougb * PERFORMANCE OF THIS SOFTWARE.
15224090Sdougb */
16224090Sdougb
17234010Sdougb/* $Id: dnsconf.h,v 1.3 2009/09/02 23:48:03 tbox Exp $ */
18224090Sdougb
19224090Sdougb#ifndef ISCCFG_NAMEDCONF_H
20224090Sdougb#define ISCCFG_NAMEDCONF_H 1
21224090Sdougb
22224090Sdougb/*! \file
23224090Sdougb * \brief
24224090Sdougb * This module defines the named.conf, rndc.conf, and rndc.key grammars.
25224090Sdougb */
26224090Sdougb
27224090Sdougb#include <isccfg/cfg.h>
28224090Sdougb
29224090Sdougb/*
30224090Sdougb * Configuration object types.
31224090Sdougb */
32224090SdougbLIBISCCFG_EXTERNAL_DATA extern cfg_type_t cfg_type_dnsconf;
33224090Sdougb/*%< A complete dns.conf file. */
34224090Sdougb
35224090Sdougb#endif /* ISCCFG_CFG_H */
36