xref: /netbsd-src/external/mpl/bind/dist/lib/dns/rdata/generic/doa_259.h (revision b5c47949a45ac972130c38cf13dfd8afb1f09285)
1 /*	$NetBSD: doa_259.h,v 1.5 2021/02/19 16:42:17 christos Exp $	*/
2 
3 /*
4  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9  *
10  * See the COPYRIGHT file distributed with this work for additional
11  * information regarding copyright ownership.
12  */
13 
14 #ifndef GENERIC_DOA_259_H
15 #define GENERIC_DOA_259_H 1
16 
17 typedef struct dns_rdata_doa {
18 	dns_rdatacommon_t common;
19 	isc_mem_t *mctx;
20 	unsigned char *mediatype;
21 	unsigned char *data;
22 	uint32_t enterprise;
23 	uint32_t type;
24 	uint16_t data_len;
25 	uint8_t location;
26 	uint8_t mediatype_len;
27 } dns_rdata_doa_t;
28 
29 #endif /* GENERIC_DOA_259_H */
30