From 1c2361fd4845bc6f574ae084f30e5138448a01eb Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 11 Jan 2003 10:01:51 +0000 Subject: [PATCH] 0x4242 is the Cisco HDLC type value for the spanning tree protocol. svn path=/trunk/; revision=6913 --- packet-bpdu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 * @@ -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); }