aboutsummaryrefslogtreecommitdiffstats
path: root/oui.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-06-01 23:04:37 +0000
committerGuy Harris <guy@alum.mit.edu>2001-06-01 23:04:37 +0000
commit40c78f3b80accf6ce0369e5a47d9003f1fc019e1 (patch)
treed70a593470b7184931e8adfaeea9741e23630a0a /oui.h
parentce18175da0a380e91afb91341530a6f8a55c40c6 (diff)
Some Cisco 802.11 bridges apparently change the OUI of packets from
000000 to 000078, so treat LLC packets with that OUI the same way we treat LLC packets with 000000. svn path=/trunk/; revision=3496
Diffstat (limited to 'oui.h')
-rw-r--r--oui.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/oui.h b/oui.h
index c6f8115cc1..02be5b4232 100644
--- a/oui.h
+++ b/oui.h
@@ -2,7 +2,7 @@
* Definitions of OUIs
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: oui.h,v 1.8 2001/01/10 09:07:35 guy Exp $
+ * $Id: oui.h,v 1.9 2001/06/01 23:04:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -29,12 +29,13 @@
#define OUI_ENCAP_ETHER 0x000000 /* encapsulated Ethernet */
#define OUI_CISCO 0x00000C /* Cisco (future use) */
+#define OUI_CISCO_WLANB 0x000078 /* Cisco WLAN bridged packets? */
#define OUI_CISCO_90 0x0000F8 /* Cisco (IOS 9.0 and above?) */
#define OUI_BRIDGED 0x0080C2 /* Bridged Frame-Relay, RFC 2427 */
/* and Bridged ATM, RFC 2684 */
#define OUI_ATM_FORUM 0x00A03E /* ATM Forum */
-#define OUI_APPLE_ATALK 0x080007 /* Appletalk */
#define OUI_CABLE_BPDU 0x00E02F /* DOCSIS spanning tree BPDU */
+#define OUI_APPLE_ATALK 0x080007 /* Appletalk */
extern const value_string oui_vals[];