diff options
Diffstat (limited to 'packet-llc.c')
-rw-r--r-- | packet-llc.c | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/packet-llc.c b/packet-llc.c index 132be4192c..b911247562 100644 --- a/packet-llc.c +++ b/packet-llc.c @@ -2,7 +2,7 @@ * Routines for IEEE 802.2 LLC layer * Gilbert Ramirez <gram@xiexie.org> * - * $Id: packet-llc.c,v 1.85 2001/06/01 23:04:37 guy Exp $ + * $Id: packet-llc.c,v 1.86 2001/06/02 03:04:12 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -166,7 +166,6 @@ http://www.cisco.com/univercd/cc/td/doc/product/software/ios113ed/113ed_cr/ibm_r */ { OUI_CISCO, "Cisco" }, { OUI_CISCO_90, "Cisco IOS 9.0 Compatible" }, - { OUI_CISCO_WLANB, "Cisco 802.11 bridge" }, { OUI_BRIDGED, "Frame Relay or ATM bridged frames" }, /* RFC 2427, RFC 2684 */ { OUI_ATM_FORUM, "ATM Forum" }, @@ -231,7 +230,7 @@ capture_llc(const u_char *pd, int offset, packet_counts *ld) { switch (oui) { case OUI_ENCAP_ETHER: - case OUI_CISCO_WLANB: + case OUI_CISCO_90: case OUI_APPLE_ATALK: /* No, I have no idea why Apple used one of their own OUIs, rather than @@ -239,11 +238,7 @@ capture_llc(const u_char *pd, int offset, packet_counts *ld) { packet type as protocol ID, for AppleTalk data packets - but used OUI_ENCAP_ETHER and an Ethernet - packet type for AARP packets. - - Also, apparently, some Cisco 802.11 - bridges change the OUI of packets - from 000000 to 000078. */ + packet type for AARP packets. */ capture_ethertype(etype, offset+8, pd, ld); break; @@ -389,7 +384,7 @@ dissect_snap(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, switch (oui) { case OUI_ENCAP_ETHER: - case OUI_CISCO_WLANB: + case OUI_CISCO_90: case OUI_APPLE_ATALK: /* No, I have no idea why Apple used one of their own OUIs, rather than @@ -397,11 +392,7 @@ dissect_snap(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, packet type as protocol ID, for AppleTalk data packets - but used OUI_ENCAP_ETHER and an Ethernet - packet type for AARP packets. - - Also, apparently, some Cisco 802.11 - bridges change the OUI of packets - from 000000 to 000078. */ + packet type for AARP packets. */ if (XDLC_IS_INFORMATION(control)) { ethertype(etype, tvb, offset+5, pinfo, tree, snap_tree, hf_type, -1); |