diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-02-05 09:34:33 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-02-05 09:34:33 +0000 |
commit | 5da490dab28762832eb65ff861ef4cc6615e47c0 (patch) | |
tree | 1447cc24c42166c241eaef6d85a81defef798be0 /packet-llc.c | |
parent | 101bc1a007963999d7bb63062fad9f1a64431c8f (diff) | |
download | wireshark-5da490dab28762832eb65ff861ef4cc6615e47c0.tar.gz wireshark-5da490dab28762832eb65ff861ef4cc6615e47c0.tar.bz2 wireshark-5da490dab28762832eb65ff861ef4cc6615e47c0.zip |
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
Diffstat (limited to 'packet-llc.c')
-rw-r--r-- | packet-llc.c | 15 |
1 files changed, 14 insertions, 1 deletions
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 <gramirez@tivoli.com> * - * $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 <gerald@zing.org> @@ -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; |