]> The Tcpdump Group git mirrors - tcpdump/blobdiff - lane.h
The stuff in the "linux-include" directory is no longer needed, as we no
[tcpdump] / lane.h
diff --git a/lane.h b/lane.h
index 19431bed0d5e6587478336c1fb5d7430852c3e3a..1a390d300d5d51155859a01f7c2d64e2deddb109 100644 (file)
--- a/lane.h
+++ b/lane.h
  * 
  */
 
-/* $Id: lane.h,v 1.1 1999-11-21 03:52:11 assar Exp $ */
+/* $Id: lane.h,v 1.3 2000-10-03 02:54:56 itojun Exp $ */
 
 #ifndef ETHER_ADDR_LEN
-#define ETHER_ADDR_LEN ETH_ALEN
+#define ETHER_ADDR_LEN 6
 #endif
 
 struct lecdatahdr_8023 {
-  u_short le_header;
-  u_char h_dest[ETHER_ADDR_LEN];
-  u_char h_source[ETHER_ADDR_LEN];
-  u_short h_type;
+  u_int16_t le_header;
+  u_int8_t h_dest[ETHER_ADDR_LEN];
+  u_int8_t h_source[ETHER_ADDR_LEN];
+  u_int16_t h_type;
 };