aboutsummaryrefslogtreecommitdiffstats
path: root/etypes.h
diff options
context:
space:
mode:
authorashokn <ashokn@f5534014-38df-0310-8fa8-9805f1628bb7>2000-03-09 18:31:51 +0000
committerashokn <ashokn@f5534014-38df-0310-8fa8-9805f1628bb7>2000-03-09 18:31:51 +0000
commita0955ecf32a3f625ec2f39e7539fa551f60ccb16 (patch)
tree1299e821df881bb9008b1c69860edc62466ef7f4 /etypes.h
parent1500427742cd17339ffd14ea713e0a8e8be6c973 (diff)
Support for MultiProtocol Label Switching (MPLS). The following support
is being added - MPLS Traffic Engineering extensions for RSVP - MPLS-encapsulated IP packets on Ethernet - OSPF Extensions for MPLS (including generic opaque LSA support for OSPF) THe following features will be committed at a later date (if I get around to writing them :-) - Label Distribution Protocol (LDP) - IS-IS Extensions for MPLS git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1707 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'etypes.h')
-rw-r--r--etypes.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/etypes.h b/etypes.h
index 2386ba4941..31644fd225 100644
--- a/etypes.h
+++ b/etypes.h
@@ -1,7 +1,7 @@
/* etypes.h
* Defines ethernet packet types, similar to tcpdump's ethertype.h
*
- * $Id: etypes.h,v 1.12 2000/01/13 17:59:13 guy Exp $
+ * $Id: etypes.h,v 1.13 2000/03/09 18:31:50 ashokn Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -106,6 +106,14 @@
#define ETHERTYPE_SNMP 0x814c /* SNMP over Ethernet, RFC 1089 */
#endif
+#ifndef ETHERTYPE_MPLS
+#define ETHERTYPE_MPLS 0x8847 /* MPLS unicast packet */
+#endif
+
+#ifndef ETHERTYPE_MPLS_MULTI
+#define ETHERTYPE_MPLS_MULTI 0x8848 /* MPLS multicast packet */
+#endif
+
#endif /* etypes.h */