1999-01-18 21:20:26 -05:00
|
|
|
/*
|
2018-02-23 03:53:12 -05:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2000-07-31 21:33:37 -04:00
|
|
|
*
|
2016-06-27 00:56:38 -04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
*
|
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
* information regarding copyright ownership.
|
1999-01-18 21:20:26 -05:00
|
|
|
*/
|
|
|
|
|
|
2005-04-27 00:57:32 -04:00
|
|
|
/* */
|
2000-04-28 22:02:38 -04:00
|
|
|
#ifndef GENERIC_MX_15_H
|
|
|
|
|
#define GENERIC_MX_15_H 1
|
|
|
|
|
|
2000-04-28 17:49:03 -04:00
|
|
|
|
|
|
|
|
typedef struct dns_rdata_mx {
|
|
|
|
|
dns_rdatacommon_t common;
|
|
|
|
|
isc_mem_t *mctx;
|
2018-03-28 08:19:37 -04:00
|
|
|
uint16_t pref;
|
2000-04-28 17:49:03 -04:00
|
|
|
dns_name_t mx;
|
|
|
|
|
} dns_rdata_mx_t;
|
2000-04-28 22:02:38 -04:00
|
|
|
|
|
|
|
|
#endif /* GENERIC_MX_15_H */
|