1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #define PPP_HDRLEN 4
- #define PPP_ADDRESS 0xff
- #define PPP_CONTROL 0x03
- #define PPP_IP 0x0021
- #define PPP_OSI 0x0023
- #define PPP_NS 0x0025
- #define PPP_DECNET 0x0027
- #define PPP_APPLE 0x0029
- #define PPP_IPX 0x002b
- #define PPP_VJC 0x002d
- #define PPP_VJNC 0x002f
- #define PPP_BRPDU 0x0031
- #define PPP_STII 0x0033
- #define PPP_VINES 0x0035
- #define PPP_IPV6 0x0057
- #define PPP_COMP 0x00fd
- #define PPP_HELLO 0x0201
- #define PPP_LUXCOM 0x0231
- #define PPP_SNS 0x0233
- #define PPP_IPCP 0x8021
- #define PPP_OSICP 0x8023
- #define PPP_NSCP 0x8025
- #define PPP_DECNETCP 0x8027
- #define PPP_APPLECP 0x8029
- #define PPP_IPXCP 0x802b
- #define PPP_STIICP 0x8033
- #define PPP_VINESCP 0x8035
- #define PPP_IPV6CP 0x8057
- #define PPP_CCP 0x80fd
- #define PPP_LCP 0xc021
- #define PPP_PAP 0xc023
- #define PPP_LQM 0xc025
- #define PPP_CHAP 0xc223
- #define PPP_BACP 0xc02b
- #define PPP_BAP 0xc02d
- #define PPP_MP 0xc03d
|