]> git.ozlabs.org Git - ppp.git/commitdiff
support Deflate and Predictor
authorPaul Mackerras <paulus@samba.org>
Fri, 27 Oct 1995 03:43:11 +0000 (03:43 +0000)
committerPaul Mackerras <paulus@samba.org>
Fri, 27 Oct 1995 03:43:11 +0000 (03:43 +0000)
pppd/ccp.h

index e403e56ee6069995f9c8fa4283e2d0c9b5a1fdf1..12e27802892e8720866c89547e382e7a8c20a17e 100644 (file)
  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
  * OR MODIFICATIONS.
  *
- * $Id: ccp.h,v 1.4 1995/04/24 06:00:54 paulus Exp $
+ * $Id: ccp.h,v 1.5 1995/10/27 03:43:11 paulus Exp $
  */
 
 typedef struct ccp_options {
     u_int bsd_compress: 1;     /* do BSD Compress? */
+    u_int deflate: 1;          /* do Deflate? */
+    u_int predictor_1: 1;      /* do Predictor-1? */
+    u_int predictor_2: 1;      /* do Predictor-2? */
     u_short bsd_bits;          /* # bits/code for BSD Compress */
+    u_short deflate_size;      /* lg(window size) for Deflate */
 } ccp_options;
 
 extern fsm ccp_fsm[];