From 6cf9894360d59e7e93a3c8e53c9fcdf37b7afc94 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 12 May 2005 12:36:52 +0000 Subject: Remove BYTE_PACK. --- cpukit/libnetworking/net/if_arp.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'cpukit/libnetworking') diff --git a/cpukit/libnetworking/net/if_arp.h b/cpukit/libnetworking/net/if_arp.h index 29c407288c..165471777f 100644 --- a/cpukit/libnetworking/net/if_arp.h +++ b/cpukit/libnetworking/net/if_arp.h @@ -30,13 +30,13 @@ * $FreeBSD: src/sys/net/if_arp.h,v 1.21 2005/01/07 01:45:34 imp Exp $ */ +/* + * $Id$ + */ + #ifndef _NET_IF_ARP_H_ #define _NET_IF_ARP_H_ -#ifndef BYTE_PACK -#define BYTE_PACK __attribute__((packed)) -#endif - /* * Address Resolution Protocol. * @@ -48,16 +48,16 @@ * specified. Field names used correspond to RFC 826. */ struct arphdr { - u_short ar_hrd BYTE_PACK; /* format of hardware address */ + u_short ar_hrd; /* format of hardware address */ #define ARPHRD_ETHER 1 /* ethernet hardware format */ #define ARPHRD_IEEE802 6 /* token-ring hardware format */ #define ARPHRD_ARCNET 7 /* arcnet hardware format */ #define ARPHRD_FRELAY 15 /* frame relay hardware format */ #define ARPHRD_IEEE1394 24 /* firewire hardware format */ - u_short ar_pro BYTE_PACK; /* format of protocol address */ - u_char ar_hln BYTE_PACK; /* length of hardware address */ - u_char ar_pln BYTE_PACK; /* length of protocol address */ - u_short ar_op BYTE_PACK; /* one of: */ + u_short ar_pro; /* format of protocol address */ + u_char ar_hln; /* length of hardware address */ + u_char ar_pln; /* length of protocol address */ + u_short ar_op; /* one of: */ #define ARPOP_REQUEST 1 /* request to resolve address */ #define ARPOP_REPLY 2 /* response to previous request */ #define ARPOP_REVREQUEST 3 /* request protocol address given hardware */ -- cgit v1.2.3