aboutsummaryrefslogtreecommitdiffstats
path: root/packet-cdp.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2002-08-18 15:30:38 +0000
committerGerald Combs <gerald@wireshark.org>2002-08-18 15:30:38 +0000
commit50dfd3eb310264f6541a4290cf4e3606fa44522b (patch)
tree962e0a0d90ee4ab8a23f83e2baff17566d422987 /packet-cdp.c
parent17e72016acb75aac330db7e1654a0b34740406c9 (diff)
From ENDOH Akira:
- displaying PPP datalink layer protocol names based on iana database: http://www.iana.org/assignments/ppp-numbers - dissecting MPLSCP and CDPCP - dissecting CDP over PPP svn path=/trunk/; revision=6011
Diffstat (limited to 'packet-cdp.c')
-rw-r--r--packet-cdp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-cdp.c b/packet-cdp.c
index 593800ff17..715f51bb04 100644
--- a/packet-cdp.c
+++ b/packet-cdp.c
@@ -2,7 +2,7 @@
* Routines for the disassembly of the "Cisco Discovery Protocol"
* (c) Copyright Hannes R. Boehm <hannes@boehm.org>
*
- * $Id: packet-cdp.c,v 1.47 2002/08/02 23:35:47 jmayer Exp $
+ * $Id: packet-cdp.c,v 1.48 2002/08/18 15:30:38 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -582,4 +582,5 @@ proto_reg_handoff_cdp(void)
cdp_handle = create_dissector_handle(dissect_cdp, proto_cdp);
dissector_add("llc.cisco_pid", 0x2000, cdp_handle);
dissector_add("chdlctype", 0x2000, cdp_handle);
+ dissector_add("ppp.protocol", 0x0207, cdp_handle);
}