1224133Sdim/*	$NetBSD: afsdb_18.h,v 1.1 2024/02/18 20:57:40 christos Exp $	*/
2224133Sdim
3224133Sdim/*
4224133Sdim * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
5224133Sdim *
6224133Sdim * SPDX-License-Identifier: MPL-2.0
7224133Sdim *
8224133Sdim * This Source Code Form is subject to the terms of the Mozilla Public
9224133Sdim * License, v. 2.0. If a copy of the MPL was not distributed with this
10224133Sdim * file, you can obtain one at https://mozilla.org/MPL/2.0/.
11224133Sdim *
12224133Sdim * See the COPYRIGHT file distributed with this work for additional
13224133Sdim * information regarding copyright ownership.
14224133Sdim */
15234353Sdim
16224133Sdim#ifndef GENERIC_AFSDB_18_H
17224133Sdim#define GENERIC_AFSDB_18_H 1
18234353Sdim
19234353Sdim/*!
20224133Sdim *  \brief Per RFC1183 */
21249423Sdim
22224133Sdimtypedef struct dns_rdata_afsdb {
23224133Sdim	dns_rdatacommon_t common;
24224133Sdim	isc_mem_t *mctx;
25224133Sdim	uint16_t subtype;
26224133Sdim	dns_name_t server;
27224133Sdim} dns_rdata_afsdb_t;
28224133Sdim
29224133Sdim#endif /* GENERIC_AFSDB_18_H */
30224133Sdim