aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ethertype.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-22 08:50:07 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-22 08:50:07 +0000
commit23d78f4c0e3c562e030194e5ae0f9dcbcf2b7c5f (patch)
tree84fd11429fc55545cef014f34cfb3febc50e6ab1 /packet-ethertype.c
parent99be9c3e93a37955776738423db83ba80d3f4b33 (diff)
Add the Ethernet type for the Vines Echo protocol.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7526 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ethertype.c')
-rw-r--r--packet-ethertype.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/packet-ethertype.c b/packet-ethertype.c
index 426d93e9f7..c33426fc9a 100644
--- a/packet-ethertype.c
+++ b/packet-ethertype.c
@@ -1,7 +1,7 @@
/* ethertype.c
* Routines for calling the right protocol for the ethertype.
*
- * $Id: packet-ethertype.c,v 1.34 2003/03/02 15:50:55 gerald Exp $
+ * $Id: packet-ethertype.c,v 1.35 2003/04/22 08:50:07 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -53,7 +53,8 @@ const value_string etype_vals[] = {
{ETHERTYPE_SNA, "SNA-over-Ethernet" },
{ETHERTYPE_AARP, "AARP" },
{ETHERTYPE_IPX, "Netware IPX/SPX" },
- {ETHERTYPE_VINES, "Vines" },
+ {ETHERTYPE_VINES_IP, "Vines IP" },
+ {ETHERTYPE_VINES_ECHO, "Vines Echo" },
{ETHERTYPE_TRAIN, "Netmon Train" },
{ETHERTYPE_LOOP, "Loopback" }, /* Ethernet Loopback */
{ETHERTYPE_WCP, "Wellfleet Compression Protocol" },
@@ -122,7 +123,8 @@ capture_ethertype(guint16 etype, const guchar *pd, int offset, int len,
case ETHERTYPE_VLAN:
capture_vlan(pd, offset, len, ld);
break;
- case ETHERTYPE_VINES:
+ case ETHERTYPE_VINES_IP:
+ case ETHERTYPE_VINES_ECHO:
capture_vines(ld);
break;
default: