1135446Strhodes/*
2193149Sdougb * Copyright (C) 2004, 2005, 2007  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
18135446Strhodes#ifndef GENERIC_DNAME_39_H
19135446Strhodes#define GENERIC_DNAME_39_H 1
20135446Strhodes
21234010Sdougb/* $Id: dname_39.h,v 1.21 2007/06/19 23:47:17 tbox Exp $ */
22135446Strhodes
23170222Sdougb/*!
24170222Sdougb *  \brief per RFC2672 */
25135446Strhodes
26135446Strhodestypedef struct dns_rdata_dname {
27135446Strhodes	dns_rdatacommon_t	common;
28135446Strhodes	isc_mem_t		*mctx;
29135446Strhodes	dns_name_t		dname;
30135446Strhodes} dns_rdata_dname_t;
31135446Strhodes
32135446Strhodes#endif /* GENERIC_DNAME_39_H */
33