aboutsummaryrefslogtreecommitdiffstats
path: root/ethertype.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1998-09-17 02:37:47 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>1998-09-17 02:37:47 +0000
commit0d8e908a4db8a8a4cde807e1b6feb5c9511d349e (patch)
treeb8ac054dc758c3e59754dc85aead82d0ee296571 /ethertype.c
parent0c4ef493d8a135099ee918fe253fca174bc8accd (diff)
* Added Don Lafontaine's support for Banyan Vines.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'ethertype.c')
-rw-r--r--ethertype.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/ethertype.c b/ethertype.c
index 78e9165ade..77e9b87fe4 100644
--- a/ethertype.c
+++ b/ethertype.c
@@ -2,7 +2,7 @@
* Routines for calling the right protocol for the ethertype.
* This is called by both packet-eth.c (Ethernet II) and packet-llc.c (SNAP)
*
- * $Id: ethertype.c,v 1.2 1998/09/16 03:21:55 gerald Exp $
+ * $Id: ethertype.c,v 1.3 1998/09/17 02:37:45 gerald Exp $
*
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
@@ -97,6 +97,13 @@ ethertype(guint16 etype, int offset,
}
dissect_ipx(pd, offset, fd, tree);
break;
+ case ETHERTYPE_VINES:
+ if (tree) {
+ add_item_to_tree(fh_tree, offset - 2, 2,
+ "Type Vines (0x%04x)", etype);
+ }
+ dissect_vines(pd, offset, fd, tree);
+ break;
default:
if (tree) {
add_item_to_tree(fh_tree, offset - 2, 2,