summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip6.h
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-09-23 06:25:08 +0000
committeralfred <alfred@FreeBSD.org>2002-09-23 06:25:08 +0000
commit9bda36d99712c4dcd253f988e696579f3ce3653c (patch)
treec64473ad2e9302c65a81387cb678dd7c17089662 /sys/netinet/ip6.h
parentd5db7184e3f5c8d842f1e4407084d75fc49e953e (diff)
downloadFreeBSD-src-9bda36d99712c4dcd253f988e696579f3ce3653c.zip
FreeBSD-src-9bda36d99712c4dcd253f988e696579f3ce3653c.tar.gz
s/__attribute__((__packed__))/__packed/g
Diffstat (limited to 'sys/netinet/ip6.h')
-rw-r--r--sys/netinet/ip6.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/netinet/ip6.h b/sys/netinet/ip6.h
index ec2c216..fe441d8 100644
--- a/sys/netinet/ip6.h
+++ b/sys/netinet/ip6.h
@@ -85,7 +85,7 @@ struct ip6_hdr {
} ip6_ctlun;
struct in6_addr ip6_src; /* source address */
struct in6_addr ip6_dst; /* destination address */
-} __attribute__((__packed__));
+} __packed;
#define ip6_vfc ip6_ctlun.ip6_un2_vfc
#define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow
@@ -119,7 +119,7 @@ struct ip6_hdr {
struct ip6_ext {
u_int8_t ip6e_nxt;
u_int8_t ip6e_len;
-} __attribute__((__packed__));
+} __packed;
/* Hop-by-Hop options header */
/* XXX should we pad it to force alignment on an 8-byte boundary? */
@@ -127,7 +127,7 @@ struct ip6_hbh {
u_int8_t ip6h_nxt; /* next header */
u_int8_t ip6h_len; /* length in units of 8 octets */
/* followed by options */
-} __attribute__((__packed__));
+} __packed;
/* Destination options header */
/* XXX should we pad it to force alignment on an 8-byte boundary? */
@@ -135,7 +135,7 @@ struct ip6_dest {
u_int8_t ip6d_nxt; /* next header */
u_int8_t ip6d_len; /* length in units of 8 octets */
/* followed by options */
-} __attribute__((__packed__));
+} __packed;
/* Option types and related macros */
#define IP6OPT_PAD1 0x00 /* 00 0 00000 */
@@ -174,7 +174,7 @@ struct ip6_rthdr {
u_int8_t ip6r_type; /* routing type */
u_int8_t ip6r_segleft; /* segments left */
/* followed by routing type specific data */
-} __attribute__((__packed__));
+} __packed;
/* Type 0 Routing header */
struct ip6_rthdr0 {
@@ -185,7 +185,7 @@ struct ip6_rthdr0 {
u_int8_t ip6r0_reserved; /* reserved field */
u_int8_t ip6r0_slmap[3]; /* strict/loose bit map */
struct in6_addr ip6r0_addr[1]; /* up to 23 addresses */
-} __attribute__((__packed__));
+} __packed;
/* Fragment header */
struct ip6_frag {
@@ -193,7 +193,7 @@ struct ip6_frag {
u_int8_t ip6f_reserved; /* reserved field */
u_int16_t ip6f_offlg; /* offset, reserved, and flag */
u_int32_t ip6f_ident; /* identification */
-} __attribute__((__packed__));
+} __packed;
#if BYTE_ORDER == BIG_ENDIAN
#define IP6F_OFF_MASK 0xfff8 /* mask out offset from _offlg */
OpenPOWER on IntegriCloud