aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bpdu.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-13 04:04:56 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-04-13 04:04:56 +0000
commit1d5231a80d6175f139debd60d594b2ebdcbac72b (patch)
tree74e6dc249c5cc3b7ba882d537d78933d82d5d66d /packet-bpdu.c
parent5c0da5ffc1018516df458cd930df33edc8cdf5ff (diff)
From Clinton Work: dissect Cisco PID 0x010b as STP (it's actually their
own modified Per-VLAN STP, so there's some extra stuff at the end of the packet that needs to be decoded). Indicate in a comment in packet-cisco-oui.c what PVSTP is. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10589 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-bpdu.c')
-rw-r--r--packet-bpdu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-bpdu.c b/packet-bpdu.c
index 48db6c4502..703c955a61 100644
--- a/packet-bpdu.c
+++ b/packet-bpdu.c
@@ -1,7 +1,7 @@
/* packet-bpdu.c
* Routines for BPDU (Spanning Tree Protocol) disassembly
*
- * $Id: packet-bpdu.c,v 1.50 2004/01/08 20:05:20 guy Exp $
+ * $Id: packet-bpdu.c,v 1.51 2004/04/13 04:04:55 guy Exp $
*
* Copyright 1999 Christophe Tronche <ch.tronche@computer.org>
*
@@ -824,4 +824,5 @@ proto_reg_handoff_bpdu(void)
dissector_add("llc.dsap", SAP_BPDU, bpdu_handle);
dissector_add("ppp.protocol", PPP_BPDU, bpdu_handle);
dissector_add("chdlctype", CHDLCTYPE_BPDU, bpdu_handle);
+ dissector_add("llc.cisco_pid", 0x010b, bpdu_handle);
}