1 /*	$NetBSD: dlv_32769.h,v 1.4 2014/12/10 04:37:59 christos Exp $	*/
2 
3 /*
4  * Copyright (C) 2004, 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
5  *
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.
9  *
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.
17  */
18 
19 /* Id: dlv_32769.h,v 1.5 2007/06/19 23:47:17 tbox Exp  */
20 
21 /* draft-ietf-dnsext-delegation-signer-05.txt */
22 #ifndef GENERIC_DLV_32769_H
23 #define GENERIC_DLV_32769_H 1
24 
25 typedef struct dns_rdata_dlv {
26 	dns_rdatacommon_t	common;
27 	isc_mem_t		*mctx;
28 	isc_uint16_t		key_tag;
29 	isc_uint8_t		algorithm;
30 	isc_uint8_t		digest_type;
31 	isc_uint16_t		length;
32 	unsigned char		*digest;
33 } dns_rdata_dlv_t;
34 
35 #endif /* GENERIC_DLV_32769_H */
36