aboutsummaryrefslogtreecommitdiffstats
path: root/packet-mpls.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-27 19:28:52 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-27 19:28:52 +0000
commitca679be5d779026acf976906e05dfa6cdf6ffa49 (patch)
tree877436ad9dcaef8016fb6f06134516a6cdab508a /packet-mpls.c
parent1a66f9aec942c121021d492133eba734a67de81c (diff)
From Hannes Gredler: support MPLS over CHDLC.
svn path=/trunk/; revision=7004
Diffstat (limited to 'packet-mpls.c')
-rw-r--r--packet-mpls.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-mpls.c b/packet-mpls.c
index f6984aacce..e417191600 100644
--- a/packet-mpls.c
+++ b/packet-mpls.c
@@ -3,7 +3,7 @@
*
* (c) Copyright Ashok Narayanan <ashokn@cisco.com>
*
- * $Id: packet-mpls.c,v 1.28 2002/08/28 21:00:22 jmayer Exp $
+ * $Id: packet-mpls.c,v 1.29 2003/01/27 19:28:52 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -217,4 +217,6 @@ proto_reg_handoff_mpls(void)
mpls_handle = create_dissector_handle(dissect_mpls, proto_mpls);
dissector_add("ethertype", ETHERTYPE_MPLS, mpls_handle);
dissector_add("ppp.protocol", PPP_MPLS_UNI, mpls_handle);
+ dissector_add("chdlctype", ETHERTYPE_MPLS, mpls_handle);
+ dissector_add("chdlctype", ETHERTYPE_MPLS_MULTI, mpls_handle);
}