113901SN/A/*
213901SN/A * Copyright (C) 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
313901SN/A *
413901SN/A * Permission to use, copy, modify, and/or distribute this software for any
513901SN/A * purpose with or without fee is hereby granted, provided that the above
613901SN/A * copyright notice and this permission notice appear in all copies.
713901SN/A *
813901SN/A * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
913901SN/A * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1013901SN/A * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
1113901SN/A * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1213901SN/A * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
1313901SN/A * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1413901SN/A * PERFORMANCE OF THIS SOFTWARE.
1513901SN/A */
1613901SN/A
1713901SN/A#ifndef GENERIC_URI_256_H
1813901SN/A#define GENERIC_URI_256_H 1
1913901SN/A
2013901SN/A/* $Id$ */
2113901SN/A
2213901SN/Atypedef struct dns_rdata_uri {
2313901SN/A	dns_rdatacommon_t	common;
2413901SN/A	isc_mem_t *		mctx;
2513901SN/A	isc_uint16_t		priority;
2613901SN/A	isc_uint16_t		weight;
2713901SN/A	unsigned char *		target;
28	isc_uint16_t		tgt_len;
29} dns_rdata_uri_t;
30
31#endif /* GENERIC_URI_256_H */
32