aboutsummaryrefslogtreecommitdiff
path: root/contrib/tcpdump/ppp.h
diff options
context:
space:
mode:
authorBill Fenner <fenner@FreeBSD.org>2001-04-03 07:45:48 +0000
committerBill Fenner <fenner@FreeBSD.org>2001-04-03 07:45:48 +0000
commit685295f4d740a26b206b4cae691262196b887f34 (patch)
tree6aab3a02ca4ebbeac636a060855172c8ebe77d46 /contrib/tcpdump/ppp.h
parentb0453382235492c8e30b09659b52d784128ca7d0 (diff)
downloadsrc-685295f4d740a26b206b4cae691262196b887f34.tar.gz
src-685295f4d740a26b206b4cae691262196b887f34.zip
Virgin import of tcpdump.org tcpdump v3.6.2
Notes
Notes: svn path=/vendor/tcpdump/dist/; revision=75115
Diffstat (limited to 'contrib/tcpdump/ppp.h')
-rw-r--r--contrib/tcpdump/ppp.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/contrib/tcpdump/ppp.h b/contrib/tcpdump/ppp.h
index c121db185c16..00d3548dabb1 100644
--- a/contrib/tcpdump/ppp.h
+++ b/contrib/tcpdump/ppp.h
@@ -1,4 +1,4 @@
-/* @(#) $Header: /tcpdump/master/tcpdump/ppp.h,v 1.8 1999/11/21 03:43:56 assar Exp $ (LBL) */
+/* @(#) $Header: /tcpdump/master/tcpdump/ppp.h,v 1.11 2000/10/09 01:53:19 guy Exp $ (LBL) */
/*
* Point to Point Protocol (PPP) RFC1331
*
@@ -15,6 +15,8 @@
* suitability of this software for any purpose. It is provided "as is"
* without express or implied warranty.
*/
+#define PPP_HDRLEN 4 /* length of PPP header */
+
#define PPP_ADDRESS 0xff /* The address byte value */
#define PPP_CONTROL 0x03 /* The control byte value */
@@ -30,6 +32,7 @@
#define PPP_BRPDU 0x0031 /* Bridging PDU */
#define PPP_STII 0x0033 /* Stream Protocol (ST-II) */
#define PPP_VINES 0x0035 /* Banyan Vines */
+#define PPP_IPV6 0x0057 /* IPv6 */
#define PPP_HELLO 0x0201 /* 802.1d Hello Packets */
#define PPP_LUXCOM 0x0231 /* Luxcom */
@@ -43,9 +46,15 @@
#define PPP_IPXCP 0x802b /* Novell IPX Control Protocol */
#define PPP_STIICP 0x8033 /* Strean Protocol Control Protocol */
#define PPP_VINESCP 0x8035 /* Banyan Vines Control Protocol */
+#define PPP_IPV6CP 0x8057 /* IPv6 Control Protocol */
+#define PPP_CCP 0x80fd /* Compress Control Protocol */
#define PPP_LCP 0xc021 /* Link Control Protocol */
#define PPP_PAP 0xc023 /* Password Authentication Protocol */
#define PPP_LQM 0xc025 /* Link Quality Monitoring */
#define PPP_CHAP 0xc223 /* Challenge Handshake Authentication Protocol */
+#define PPP_BACP 0xc02b /* Bandwidth Allocation Control Protocol */
+#define PPP_BAP 0xc02d /* BAP */
+#define PPP_MP 0xc03d /* Multi-Link */
+
extern struct tok ppptype2str[];