aboutsummaryrefslogtreecommitdiffstats
path: root/ppptypes.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-12-14 08:20:31 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-12-14 08:20:31 +0000
commite1b04a9f40fa0299788f6f5420d0047c6cea258d (patch)
tree363c9c33cda7869684bc7b282c80617ff4171021 /ppptypes.h
parent505e73f6d81e83bc32008574c449d80133f87991 (diff)
PPP patches from Burke Lau to:
add FCS checking; support Cisco HDLC format in the PPP dissector; handle MPLS-over-PPP. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2754 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'ppptypes.h')
-rw-r--r--ppptypes.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/ppptypes.h b/ppptypes.h
index c98f9c7b57..69aeca3299 100644
--- a/ppptypes.h
+++ b/ppptypes.h
@@ -1,7 +1,7 @@
/* ppptypes.h
* Defines PPP packet types.
*
- * $Id: ppptypes.h,v 1.1 2000/04/16 21:37:07 guy Exp $
+ * $Id: ppptypes.h,v 1.2 2000/12/14 08:20:30 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -40,6 +40,8 @@
#define PPP_MP 0x3d /* Multilink PPP */
#define PPP_IPV6 0x57 /* Internet Protocol Version 6 */
#define PPP_COMP 0xfd /* compressed packet */
+#define PPP_MPLS_UNI 0x281 /* MPLS Unicast */
+#define PPP_MPLS_MULTI 0x281 /* MPLS Multicast */
#define PPP_IPCP 0x8021 /* IP Control Protocol */
#define PPP_ATCP 0x8029 /* AppleTalk Control Protocol */
#define PPP_IPXCP 0x802b /* IPX Control Protocol */
@@ -50,4 +52,12 @@
#define PPP_CHAP 0xc223 /* Cryptographic Handshake Auth. Protocol */
#define PPP_CBCP 0xc029 /* Callback Control Protocol */
+/* Protocol types for the CISCO HDLC Format */
+#define CISCO_IP 0x0800 /* Internet Protocol */
+#define CISCO_SLARP 0x8035 /* CISCO SLARP protocol */
+
+/* Address and control field for CISCO HDLC */
+#define CISCO_HDLC_ADDR_CTRL 0x0F00 /* Internet Protocol */
+
+
#endif /* ppptypes.h */