aboutsummaryrefslogtreecommitdiffstats
path: root/packet-llc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-05 09:19:06 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-05 09:19:06 +0000
commit101bc1a007963999d7bb63062fad9f1a64431c8f (patch)
tree2621f2ccbae45e8cb53d9b68b3429afb13e23072 /packet-llc.c
parentf035694705d781401df1800df375047616f770cf (diff)
Dissector for Cisco's Virtual Trunking Protocol.
svn path=/trunk/; revision=1603
Diffstat (limited to 'packet-llc.c')
-rw-r--r--packet-llc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/packet-llc.c b/packet-llc.c
index e8dd8d42aa..04dd72a0a7 100644
--- a/packet-llc.c
+++ b/packet-llc.c
@@ -2,7 +2,7 @@
* Routines for IEEE 802.2 LLC layer
* Gilbert Ramirez <gramirez@tivoli.com>
*
- * $Id: packet-llc.c,v 1.45 2000/02/05 05:54:15 guy Exp $
+ * $Id: packet-llc.c,v 1.46 2000/02/05 09:19:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -401,6 +401,10 @@ dissect_llc(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
dissect_cgmp(pd, offset+8, fd, tree);
break;
+ case 0x2003:
+ dissect_vtp(pd, offset+8, fd, tree);
+ break;
+
default:
dissect_data(pd, offset+8, fd, tree);
break;