aboutsummaryrefslogtreecommitdiffstats
path: root/oui.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-01 23:04:37 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-01 23:04:37 +0000
commitba27ec619150e33fffe89c596ad286933b1a24fa (patch)
treed70a593470b7184931e8adfaeea9741e23630a0a /oui.h
parentbb06b52955e2b29cae0a20c63e195deeea7a82a0 (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3496 f5534014-38df-0310-8fa8-9805f1628bb7
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[];