1999-01-18 21:20:26 -05:00
|
|
|
/*
|
2005-04-28 20:24:12 -04:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
1999-09-15 19:03:43 -04:00
|
|
|
*
|
1999-01-18 21:20:26 -05:00
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
2021-06-03 02:37:05 -04:00
|
|
|
*
|
1999-01-18 21:20:26 -05: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 https://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
*
|
1999-01-18 21:20:26 -05:00
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
* information regarding copyright ownership.
|
|
|
|
|
*/
|
|
|
|
|
|
2005-04-27 00:57:32 -04:00
|
|
|
/* */
|
2021-10-05 10:49:47 -04:00
|
|
|
#pragma once
|
2000-04-28 22:02:38 -04:00
|
|
|
|
2000-04-28 17:49:03 -04:00
|
|
|
typedef struct dns_rdata_null {
|
|
|
|
|
dns_rdatacommon_t common;
|
|
|
|
|
isc_mem_t *mctx;
|
2018-03-28 08:19:37 -04:00
|
|
|
uint16_t length;
|
2000-04-28 17:49:03 -04:00
|
|
|
unsigned char *data;
|
|
|
|
|
} dns_rdata_null_t;
|