]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/net/ethernet.h
xnu-4903.241.1.tar.gz
[apple/xnu.git] / bsd / net / ethernet.h
index 5f29b6e715c76f5ec7506245cdcac71f88b9e011..23719456b1d00f396caea0f4f7bd4d6cbba3c23b 100644 (file)
 /*
  * 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
 
@@ -130,6 +130,17 @@ struct     ether_addr *ether_aton(const char *);
 #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)
@@ -145,6 +156,7 @@ _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? */