diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-01-12 19:37:24 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-01-12 19:37:24 +0000 |
commit | 3db486ab748a6f5c8f5c1aeeb1e3710c85694f36 (patch) | |
tree | 879ba328027a26f6335f82f62be28627afa71deb /oui.h | |
parent | bd7c6bda88272183dfbbf5fe146ccc638a864cd9 (diff) | |
download | wireshark-3db486ab748a6f5c8f5c1aeeb1e3710c85694f36.tar.gz wireshark-3db486ab748a6f5c8f5c1aeeb1e3710c85694f36.tar.bz2 wireshark-3db486ab748a6f5c8f5c1aeeb1e3710c85694f36.zip |
Cisco CDP packets appears to be sent as LLC packets with an OUI of
0x00000c and a protocol ID of 0x2000 - we used to recognize those as CDP
because we ignored the OUI and treated all LLC packets as
SNAP-encapsulated packets, and treated 0x2000 as an Ethertype, but we
now treat only encapsulated-Ethernet and Apple packets as
SNAP-encapsulated (and arguably we should handle Apple separately).
svn path=/trunk/; revision=1452
Diffstat (limited to 'oui.h')
-rw-r--r-- | oui.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,7 +2,7 @@ * Definitions of OUIs * Gilbert Ramirez <gramirez@tivoli.com> * - * $Id: oui.h,v 1.2 2000/01/07 22:05:28 guy Exp $ + * $Id: oui.h,v 1.3 2000/01/12 19:37:24 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -25,6 +25,7 @@ */ #define OUI_ENCAP_ETHER 0x000000 /* encapsulated Ethernet */ +#define OUI_CISCO 0x00000C /* Cisco */ #define OUI_ATM_FORUM 0x00A03E /* ATM Forum */ #define OUI_APPLE_ATALK 0x080007 /* Appletalk */ |