From 5da490dab28762832eb65ff861ef4cc6615e47c0 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 5 Feb 2000 09:34:33 +0000 Subject: Note the document that specified the PIDs for VTP and DRiP that go along with Cisco's "wacky proprietary protocols atop LLC/SNAP" OUI, and put in "#if 0"ed out code for Cisco's DRiP. svn path=/trunk/; revision=1604 --- packet-llc.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'packet-llc.c') diff --git a/packet-llc.c b/packet-llc.c index 04dd72a0a7..351d5f8a12 100644 --- a/packet-llc.c +++ b/packet-llc.c @@ -2,7 +2,7 @@ * Routines for IEEE 802.2 LLC layer * Gilbert Ramirez * - * $Id: packet-llc.c,v 1.46 2000/02/05 09:19:05 guy Exp $ + * $Id: packet-llc.c,v 1.47 2000/02/05 09:34:33 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -166,6 +166,13 @@ static const value_string llc_ctrl_vals[] = { { 0, NULL } }; +/* + * See + * + * http://www.cisco.com/univercd/cc/td/doc/product/lan/trsrb/vlan.htm + * + * for the PIDs for VTP and DRiP that go with an OUI of OUI_CISCO. + */ const value_string oui_vals[] = { { OUI_ENCAP_ETHER, "Encapsulated Ethernet" }, /* @@ -393,6 +400,12 @@ dissect_llc(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { if (XDLC_IS_INFORMATION(control)) { switch (etype) { +#if 0 + case 0x0102: + dissect_drip(pd, offset+8, fd, tree); + break; +#endif + case 0x2000: dissect_cdp(pd, offset+8, fd, tree); break; -- cgit v1.2.3