From 5acc3b793b11d128457bc13588e20652c755097f Mon Sep 17 00:00:00 2001 From: guy Date: Tue, 3 Apr 2001 05:42:11 +0000 Subject: An Ethernet type of 0x6558 is "Transparent Ethernet Bridging" which, apparently, means an Ethernet packet is stuffed into the payload; add support for it as an Ethernet, Cisco HDLC, and GRE packet type. Sort the Ethernet types in "etypes.h" by value. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3250 f5534014-38df-0310-8fa8-9805f1628bb7 --- packet-chdlc.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'packet-chdlc.c') diff --git a/packet-chdlc.c b/packet-chdlc.c index 7c5d6d64aa..486388acb9 100644 --- a/packet-chdlc.c +++ b/packet-chdlc.c @@ -1,7 +1,7 @@ /* packet-chdlc.c * Routines for Cisco HDLC packet disassembly * - * $Id: packet-chdlc.c,v 1.1 2001/03/15 09:11:00 guy Exp $ + * $Id: packet-chdlc.c,v 1.2 2001/04/03 05:42:11 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -87,14 +87,15 @@ static const value_string chdlc_address_vals[] = { }; const value_string chdlc_vals[] = { - {0x2000, "Cisco Discovery Protocol"}, - {ETHERTYPE_IP, "IP"}, - {CISCO_SLARP, "SLARP"}, - {ETHERTYPE_DEC_LB, "DEC LanBridge"}, - {ETHERTYPE_ATALK, "Appletalk"}, - {ETHERTYPE_AARP, "AARP"}, - {ETHERTYPE_IPX, "Netware IPX/SPX"}, - {0, NULL} + {0x2000, "Cisco Discovery Protocol"}, + {ETHERTYPE_IP, "IP"}, + {CISCO_SLARP, "SLARP"}, + {ETHERTYPE_DEC_LB, "DEC LanBridge"}, + {ETHERTYPE_ATALK, "Appletalk"}, + {ETHERTYPE_AARP, "AARP"}, + {ETHERTYPE_IPX, "Netware IPX/SPX"}, + {ETHERTYPE_ETHBRIDGE, "Transparent Ethernet bridging" }, + {0, NULL} }; void -- cgit v1.2.3