Fix for bug 5425:
[metze/wireshark/wip.git] / epan / dissectors / packet-sll.h
index bac77079af5339eda9898db9901254eccd5dab69..de67e86688e245cb9a2afd883b18bebeb12e6d64 100644 (file)
 #ifndef __PACKET_SLL_H__
 #define __PACKET_SLL_H__
 
+/*
+ * The LINUX_SLL_ values for "sll_protocol".
+ */
+#define LINUX_SLL_P_802_3      0x0001  /* Novell 802.3 frames without 802.2 LLC header */
+#define LINUX_SLL_P_ETHERNET   0x0003  /* Ethernet */
+#define LINUX_SLL_P_802_2      0x0004  /* 802.2 frames (not D/I/X Ethernet) */
+#define LINUX_SLL_P_PPPHDLC    0x0007  /* PPP HDLC frames */
+#define LINUX_SLL_P_CAN                0x000C  /* Controller Area Network */
+
 void capture_sll(const guchar *, int, packet_counts *);
 
 #endif