aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ppp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-14 08:25:14 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-14 08:25:14 +0000
commit691d4f9a0fb78b685db54caa54f58b5b558e76c9 (patch)
tree8aa4ade50167e6d32a08a98a8d73e9d7774f76b5 /packet-ppp.c
parente7d080a8c643c7d1635ece2fbf162c29eefea8a3 (diff)
Add the PPP types for the DEC LANBridge100 Spanning Tree protocol and
for "Bridging PDU"s (which I'm assuming are 802.1d Spanning Tree BPDUs), and have the STP and LANBridge100 STP dissectors register them with the "ppp.protocol" dissector table. Fix the value for the PPP type for MPLS Multicast (it's 0x0283, not 0x0281). svn path=/trunk/; revision=2896
Diffstat (limited to 'packet-ppp.c')
-rw-r--r--packet-ppp.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/packet-ppp.c b/packet-ppp.c
index ab9d851ebe..bf35c822dc 100644
--- a/packet-ppp.c
+++ b/packet-ppp.c
@@ -1,7 +1,7 @@
/* packet-ppp.c
* Routines for ppp packet disassembly
*
- * $Id: packet-ppp.c,v 1.53 2001/01/13 07:47:49 guy Exp $
+ * $Id: packet-ppp.c,v 1.54 2001/01/14 08:25:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -94,11 +94,15 @@ static const value_string ppp_vals[] = {
{PPP_AT, "Appletalk" },
{PPP_IPX, "Netware IPX/SPX"},
{PPP_VJC_COMP, "VJ compressed TCP"},
- {PPP_VJC_UNCOMP,"VJ uncompressed TCP"},
+ {PPP_VJC_UNCOMP,"VJ uncompressed TCP"},
+ {PPP_BPDU, "Bridging PDU"},
{PPP_VINES, "Vines" },
{PPP_MP, "Multilink"},
{PPP_IPV6, "IPv6" },
{PPP_COMP, "compressed packet" },
+ {PPP_DEC_LB, "DEC LANBridge100 Spanning Tree"},
+ {PPP_MPLS_UNI, "MPLS Unicast"},
+ {PPP_MPLS_MULTI, "MPLS Multicast"},
{PPP_IPCP, "IP Control Protocol" },
{PPP_ATCP, "AppleTalk Control Protocol" },
{PPP_IPXCP, "IPX Control Protocol" },
@@ -108,8 +112,6 @@ static const value_string ppp_vals[] = {
{PPP_LQR, "Link Quality Report protocol" },
{PPP_CHAP, "Cryptographic Handshake Auth. Protocol" },
{PPP_CBCP, "Callback Control Protocol" },
- {PPP_MPLS_UNI, "MPLS Uni-cast"},
- {PPP_MPLS_MULTI, "MPLS Multi-cast"},
{ETHERTYPE_IP, "Cisco HDLC IP"},
{CISCO_SLARP, "Cisco HDLC SLARP"},
{0, NULL }