1253592Serwin/*
2253592Serwin * Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
3253592Serwin *
4253592Serwin * Permission to use, copy, modify, and/or distribute this software for any
5253592Serwin * purpose with or without fee is hereby granted, provided that the above
6253592Serwin * copyright notice and this permission notice appear in all copies.
7253592Serwin *
8253592Serwin * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9253592Serwin * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10253592Serwin * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11253592Serwin * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12253592Serwin * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13253592Serwin * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14253592Serwin * PERFORMANCE OF THIS SOFTWARE.
15253592Serwin */
16253592Serwin
17253592Serwin/* */
18253592Serwin#ifndef GENERIC_LP_107_H
19253592Serwin#define GENERIC_LP_107_H 1
20253592Serwin
21253592Serwintypedef struct dns_rdata_lp {
22253592Serwin	dns_rdatacommon_t	common;
23253592Serwin	isc_mem_t		*mctx;
24253592Serwin	isc_uint16_t		pref;
25253592Serwin	dns_name_t		lp;
26253592Serwin} dns_rdata_lp_t;
27253592Serwin
28253592Serwin#endif /* GENERIC_LP_107_H */
29