1135446Strhodes/*
2224092Sdougb * Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
3135446Strhodes * Copyright (C) 1999-2001  Internet Software Consortium.
4135446Strhodes *
5193149Sdougb * Permission to use, copy, modify, and/or distribute this software for any
6135446Strhodes * purpose with or without fee is hereby granted, provided that the above
7135446Strhodes * copyright notice and this permission notice appear in all copies.
8135446Strhodes *
9135446Strhodes * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10135446Strhodes * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11135446Strhodes * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12135446Strhodes * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13135446Strhodes * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14135446Strhodes * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15135446Strhodes * PERFORMANCE OF THIS SOFTWARE.
16135446Strhodes */
17135446Strhodes
18234010Sdougb/* $Id: types.h,v 1.31 2009/01/09 23:47:45 tbox Exp $ */
19135446Strhodes
20135446Strhodes#ifndef NAMED_TYPES_H
21135446Strhodes#define NAMED_TYPES_H 1
22135446Strhodes
23170222Sdougb/*! \file */
24170222Sdougb
25135446Strhodes#include <dns/types.h>
26135446Strhodes
27224092Sdougbtypedef struct ns_cache			ns_cache_t;
28224092Sdougbtypedef ISC_LIST(ns_cache_t)		ns_cachelist_t;
29135446Strhodestypedef struct ns_client		ns_client_t;
30135446Strhodestypedef struct ns_clientmgr		ns_clientmgr_t;
31135446Strhodestypedef struct ns_query			ns_query_t;
32135446Strhodestypedef struct ns_server 		ns_server_t;
33193149Sdougbtypedef struct ns_xmld			ns_xmld_t;
34193149Sdougbtypedef struct ns_xmldmgr		ns_xmldmgr_t;
35135446Strhodestypedef struct ns_interface 		ns_interface_t;
36135446Strhodestypedef struct ns_interfacemgr		ns_interfacemgr_t;
37135446Strhodestypedef struct ns_lwresd		ns_lwresd_t;
38135446Strhodestypedef struct ns_lwreslistener		ns_lwreslistener_t;
39135446Strhodestypedef struct ns_lwdclient		ns_lwdclient_t;
40135446Strhodestypedef struct ns_lwdclientmgr		ns_lwdclientmgr_t;
41135446Strhodestypedef struct ns_lwsearchlist		ns_lwsearchlist_t;
42135446Strhodestypedef struct ns_lwsearchctx		ns_lwsearchctx_t;
43135446Strhodestypedef struct ns_controls		ns_controls_t;
44135446Strhodestypedef struct ns_dispatch		ns_dispatch_t;
45135446Strhodestypedef ISC_LIST(ns_dispatch_t)		ns_dispatchlist_t;
46193149Sdougbtypedef struct ns_statschannel		ns_statschannel_t;
47193149Sdougbtypedef ISC_LIST(ns_statschannel_t)	ns_statschannellist_t;
48135446Strhodes#endif /* NAMED_TYPES_H */
49