summaryrefslogtreecommitdiffstats
path: root/include/arpa
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-06-04 22:38:27 +0000
committerpeter <peter@FreeBSD.org>1999-06-04 22:38:27 +0000
commit800c3a618af55e4e9843329ab84410dd3d8c2f05 (patch)
tree4c4362d86b4eba38636c397c564e41cce93ec4e2 /include/arpa
parent94bd62d081f691e6dbf6e7ca4fd42418a40c7360 (diff)
downloadFreeBSD-src-800c3a618af55e4e9843329ab84410dd3d8c2f05.zip
FreeBSD-src-800c3a618af55e4e9843329ab84410dd3d8c2f05.tar.gz
Change an internal variable from "class" to "ns_class" for C++'s benefit.
Apparently BIND-8.2.1 uses ns_class. Submitted by: John Plevyak <jplevyak@inktomi.com>
Diffstat (limited to 'include/arpa')
-rw-r--r--include/arpa/nameser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/arpa/nameser.h b/include/arpa/nameser.h
index 634dece..556210e 100644
--- a/include/arpa/nameser.h
+++ b/include/arpa/nameser.h
@@ -50,7 +50,7 @@
/*
* From: Id: nameser.h,v 8.16 1998/02/06 00:35:58 halley Exp
- * $Id$
+ * $Id: nameser.h,v 1.12 1998/06/11 08:55:15 peter Exp $
*/
#ifndef _ARPA_NAMESER_H_
@@ -140,7 +140,7 @@ extern struct _ns_flagdata _ns_flagdata[];
typedef struct __ns_rr {
char name[NS_MAXDNAME]; /* XXX need to malloc */
u_int16_t type;
- u_int16_t class;
+ u_int16_t rr_class;
u_int32_t ttl;
u_int16_t rdlength;
const u_char *rdata;
@@ -149,7 +149,7 @@ typedef struct __ns_rr {
/* Accessor macros - this is part of the public interface. */
#define ns_rr_name(rr) (((rr).name[0] != '\0') ? (rr).name : ".")
#define ns_rr_type(rr) ((rr).type + 0)
-#define ns_rr_class(rr) ((rr).class + 0)
+#define ns_rr_class(rr) ((rr).rr_class + 0)
#define ns_rr_ttl(rr) ((rr).ttl + 0)
#define ns_rr_rdlen(rr) ((rr).rdlength + 0)
#define ns_rr_rdata(rr) ((rr).rdata + 0)
OpenPOWER on IntegriCloud