123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #define _PPPIO(n) (('p' << 8) + (n))
- #define PPPIO_NEWPPA _PPPIO(130)
- #define PPPIO_GETSTAT _PPPIO(131)
- #define PPPIO_GETCSTAT _PPPIO(132)
- #define PPPIO_MTU _PPPIO(133)
- #define PPPIO_MRU _PPPIO(134)
- #define PPPIO_CFLAGS _PPPIO(135)
- #define PPPIO_XCOMP _PPPIO(136)
- #define PPPIO_RCOMP _PPPIO(137)
- #define PPPIO_XACCM _PPPIO(138)
- #define PPPIO_RACCM _PPPIO(139)
- #define PPPIO_VJINIT _PPPIO(140)
- #define PPPIO_ATTACH _PPPIO(141)
- #define PPPIO_LASTMOD _PPPIO(142)
- #define PPPIO_GCLEAN _PPPIO(143)
- #define PPPIO_DEBUG _PPPIO(144)
- #define PPPIO_BIND _PPPIO(145)
- #define PPPIO_NPMODE _PPPIO(146)
- #define PPPIO_GIDLE _PPPIO(147)
- #define PPPIO_PASSFILT _PPPIO(148)
- #define PPPIO_ACTIVEFILT _PPPIO(149)
- #define COMP_AC 0x1
- #define DECOMP_AC 0x2
- #define COMP_PROT 0x4
- #define DECOMP_PROT 0x8
- #define COMP_VJC 0x10
- #define COMP_VJCCID 0x20
- #define DECOMP_VJC 0x40
- #define DECOMP_VJCCID 0x80
- #define CCP_ISOPEN 0x100
- #define CCP_ISUP 0x200
- #define CCP_ERROR 0x400
- #define CCP_FATALERROR 0x800
- #define CCP_COMP_RUN 0x1000
- #define CCP_DECOMP_RUN 0x2000
- #define RCV_B7_0 1
- #define RCV_B7_1 2
- #define RCV_EVNP 4
- #define RCV_ODDP 8
- #define PPPCTL_OERROR 0xe0
- #define PPPCTL_IERROR 0xe1
- #define PPPCTL_MTU 0xe2
- #define PPPCTL_MRU 0xe3
- #define PPPCTL_UNIT 0xe4
- #define PPPDBG_DUMP 0x10000
- #define PPPDBG_LOG 0x100
- #define PPPDBG_DRIVER 0
- #define PPPDBG_IF 1
- #define PPPDBG_COMP 2
- #define PPPDBG_AHDLC 3
|