aboutsummaryrefslogtreecommitdiffstats
path: root/packet-cdp.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-18 15:30:38 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-18 15:30:38 +0000
commit41f37b8a758a8aa986c29dd5e77701c456e5ce55 (patch)
tree962e0a0d90ee4ab8a23f83e2baff17566d422987 /packet-cdp.c
parent6793644579f09660a5050f1fbcf3f7122587998d (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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6011 f5534014-38df-0310-8fa8-9805f1628bb7
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);
}