]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/ccp.h
defs moved to ppp-comp.h
[ppp.git] / pppd / ccp.h
index a2435bb4c355e7e5d86dc6fbc3a83e2b973d5d7d..e403e56ee6069995f9c8fa4283e2d0c9b5a1fdf1 100644 (file)
  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
  * OR MODIFICATIONS.
  *
- * $Id: ccp.h,v 1.3 1994/10/18 02:07:33 paulus Exp $
+ * $Id: ccp.h,v 1.4 1995/04/24 06:00:54 paulus Exp $
  */
 
-/*
- * Compression algorithms = configuration options
- */
-#define CI_BSD_COMPRESS        0x21    /* BSD Compress */
-
-/*
- * Extra codes for CCP.
- */
-#define RESETREQ       14
-#define RESETACK       15
-
 typedef struct ccp_options {
     u_int bsd_compress: 1;     /* do BSD Compress? */
     u_short bsd_bits;          /* # bits/code for BSD Compress */
 } ccp_options;
 
-#define MIN_BSD_BITS   9
-#define MAX_BSD_BITS   15
-
 extern fsm ccp_fsm[];
 extern ccp_options ccp_wantoptions[];
 extern ccp_options ccp_gotoptions[];