aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bpdu.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-11 10:01:51 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-11 10:01:51 +0000
commit1c2361fd4845bc6f574ae084f30e5138448a01eb (patch)
treea10c72ec1c0411590384a719e437baef6539eb93 /packet-bpdu.c
parent4a12e2d45d97b5065493719be42e0325a785894d (diff)
0x4242 is the Cisco HDLC type value for the spanning tree protocol.
svn path=/trunk/; revision=6913
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 b7b4c7e519..8cfdf8abc0 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.43 2002/12/22 00:40:38 guy Exp $
+ * $Id: packet-bpdu.c,v 1.44 2003/01/11 10:01:51 guy Exp $
*
* Copyright 1999 Christophe Tronche <ch.tronche@computer.org>
*
@@ -768,4 +768,5 @@ proto_reg_handoff_bpdu(void)
bpdu_handle = find_dissector("bpdu");
dissector_add("llc.dsap", SAP_BPDU, bpdu_handle);
dissector_add("ppp.protocol", PPP_BPDU, bpdu_handle);
+ dissector_add("chdlctype", 0x4242, bpdu_handle);
}