1999-02-01 23:49:47 +00:00
|
|
|
/*
|
2016-06-27 14:56:38 +10:00
|
|
|
* Copyright (C) 1999-2001, 2004, 2005, 2007, 2011, 2012, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10: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/.
|
1999-02-01 23:49:47 +00:00
|
|
|
*/
|
|
|
|
|
2011-08-16 00:02:38 +00:00
|
|
|
#ifndef GENERIC_NAPTR_35_H
|
|
|
|
#define GENERIC_NAPTR_35_H 1
|
2000-04-29 02:02:38 +00:00
|
|
|
|
2012-03-08 00:21:15 +11:00
|
|
|
/* $Id$ */
|
1999-02-01 23:49:47 +00:00
|
|
|
|
2011-08-16 23:46:36 +00:00
|
|
|
/*!
|
2005-04-27 04:57:32 +00:00
|
|
|
* \brief Per RFC2915 */
|
1999-02-01 23:49:47 +00:00
|
|
|
|
2011-08-16 00:02:38 +00:00
|
|
|
typedef struct dns_rdata_naptr {
|
2000-01-17 03:21:53 +00:00
|
|
|
dns_rdatacommon_t common;
|
|
|
|
isc_mem_t *mctx;
|
|
|
|
isc_uint16_t order;
|
|
|
|
isc_uint16_t preference;
|
|
|
|
char *flags;
|
2000-05-05 23:20:10 +00:00
|
|
|
isc_uint8_t flags_len;
|
2000-01-17 03:21:53 +00:00
|
|
|
char *service;
|
2000-05-05 23:20:10 +00:00
|
|
|
isc_uint8_t service_len;
|
2000-01-17 03:21:53 +00:00
|
|
|
char *regexp;
|
2000-05-05 23:20:10 +00:00
|
|
|
isc_uint8_t regexp_len;
|
2000-01-17 03:21:53 +00:00
|
|
|
dns_name_t replacement;
|
2011-08-16 00:02:38 +00:00
|
|
|
} dns_rdata_naptr_t;
|
2000-04-29 02:02:38 +00:00
|
|
|
|
2011-08-16 00:02:38 +00:00
|
|
|
#endif /* GENERIC_NAPTR_35_H */
|