Blame lib/dns/rdata/generic/gpos_27.h

Packit 5ce601
/*
Packit 5ce601
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
Packit 5ce601
 *
Packit 5ce601
 * This Source Code Form is subject to the terms of the Mozilla Public
Packit 5ce601
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service 704ed8
 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
Packit 5ce601
 *
Packit 5ce601
 * See the COPYRIGHT file distributed with this work for additional
Packit 5ce601
 * information regarding copyright ownership.
Packit 5ce601
 */
Packit 5ce601
Packit 5ce601
#ifndef GENERIC_GPOS_27_H
Packit 5ce601
#define GENERIC_GPOS_27_H 1
Packit 5ce601
Packit 5ce601
Packit 5ce601
/*!
Packit 5ce601
 *  \brief per RFC1712 */
Packit 5ce601
Packit 5ce601
typedef struct dns_rdata_gpos {
Packit 5ce601
	dns_rdatacommon_t	common;
Packit 5ce601
	isc_mem_t		*mctx;
Packit 5ce601
	char			*longitude;
Packit 5ce601
	char			*latitude;
Packit 5ce601
	char			*altitude;
Packit 5ce601
	uint8_t		long_len;
Packit 5ce601
	uint8_t		lat_len;
Packit 5ce601
	uint8_t		alt_len;
Packit 5ce601
} dns_rdata_gpos_t;
Packit 5ce601
Packit 5ce601
#endif /* GENERIC_GPOS_27_H */