/*
* Structure of a 10Mb/s Ethernet header.
*/
-struct ether_header {
+typedef struct ether_header {
u_char ether_dhost[ETHER_ADDR_LEN];
u_char ether_shost[ETHER_ADDR_LEN];
u_short ether_type;
-};
+} ether_header_t;
/*
* Structure of a 48-bit Ethernet address.
*/
-struct ether_addr {
+typedef struct ether_addr {
u_char octet[ETHER_ADDR_LEN];
-};
+} ether_addr_t;
#define ether_addr_octet octet
#ifdef BSD_KERNEL_PRIVATE
extern u_char etherbroadcastaddr[ETHER_ADDR_LEN];
+#if defined (__arm__)
+
+#include <string.h>
+
+static __inline__ int
+_ether_cmp(const void * a, const void * b)
+{
+ return (memcmp(a, b, ETHER_ADDR_LEN));
+}
+
+#else /* __arm__ */
static __inline__ int
_ether_cmp(const void * a, const void * b)
return (0);
}
+#endif /* __arm__ */
#endif /* BSD_KERNEL_PRIVATE */
#define ETHER_IS_MULTICAST(addr) (*(addr) & 0x01) /* is address mcast/bcast? */