Go to the documentation of this file.
10 #ifndef _UAPI_NET_PPP_COMP_H
11 #define _UAPI_NET_PPP_COMP_H
22 #define CCP_RESETREQ 14
23 #define CCP_RESETACK 15
29 #define CCP_MAX_OPTION_LENGTH 32
35 #define CCP_CODE(dp) ((dp)[0])
36 #define CCP_ID(dp) ((dp)[1])
37 #define CCP_LENGTH(dp) (((dp)[2] << 8) + (dp)[3])
40 #define CCP_OPT_CODE(dp) ((dp)[0])
41 #define CCP_OPT_LENGTH(dp) ((dp)[1])
42 #define CCP_OPT_MINLEN 2
48 #define CI_BSD_COMPRESS 21
49 #define CILEN_BSD_COMPRESS 3
52 #define BSD_NBITS(x) ((x) & 0x1F)
53 #define BSD_VERSION(x) ((x) >> 5)
54 #define BSD_CURRENT_VERSION 1
55 #define BSD_MAKE_OPT(v, n) (((v) << 5) | (n))
57 #define BSD_MIN_BITS 9
58 #define BSD_MAX_BITS 15
65 #define CI_DEFLATE_DRAFT 24
66 #define CILEN_DEFLATE 4
68 #define DEFLATE_MIN_SIZE 9
69 #define DEFLATE_MAX_SIZE 15
70 #define DEFLATE_METHOD_VAL 8
71 #define DEFLATE_SIZE(x) (((x) >> 4) + 8)
72 #define DEFLATE_METHOD(x) ((x) & 0x0F)
73 #define DEFLATE_MAKE_OPT(w) ((((w) - 8) << 4) + DEFLATE_METHOD_VAL)
74 #define DEFLATE_CHK_SEQUENCE 0
87 #define CI_PREDICTOR_1 1
88 #define CILEN_PREDICTOR_1 2
89 #define CI_PREDICTOR_2 2
90 #define CILEN_PREDICTOR_2 2