aboutsummaryrefslogtreecommitdiffstats
path: root/packet-llc.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-05 05:54:17 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-05 05:54:17 +0000
commit4b81b2dbc971f3273c385bf99005dbec8f30b4c7 (patch)
tree53797a29245feb1f20c4623c08375970e8cd403e /packet-llc.c
parent1d032435427c312b9b0783d989c1347f169a79a2 (diff)
Cisco Group Management Protocol dissector.
svn path=/trunk/; revision=1601
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 1ccc5d00cb..e8dd8d42aa 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.44 2000/01/24 02:44:52 guy Exp $
+ * $Id: packet-llc.c,v 1.45 2000/02/05 05:54:15 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -397,6 +397,10 @@ dissect_llc(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
dissect_cdp(pd, offset+8, fd, tree);
break;
+ case 0x2001:
+ dissect_cgmp(pd, offset+8, fd, tree);
+ break;
+
default:
dissect_data(pd, offset+8, fd, tree);
break;