diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-08 04:52:38 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-08 04:52:38 +0000 |
commit | de1c15bacfef205336e6ed358d45722777574cc8 (patch) | |
tree | 2c6746f6856ecc235155227a375bdef96ac19b20 /usr.sbin/pppd/ccp.h | |
parent | 860bdcaf761bcf8225b4dec33bfd17ad1d20c9b3 (diff) |
pppd 2.3.5
Diffstat (limited to 'usr.sbin/pppd/ccp.h')
-rw-r--r-- | usr.sbin/pppd/ccp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/pppd/ccp.h b/usr.sbin/pppd/ccp.h index 169efe213af..33e2cb0d32a 100644 --- a/usr.sbin/pppd/ccp.h +++ b/usr.sbin/pppd/ccp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ccp.h,v 1.4 1997/09/05 04:32:34 millert Exp $ */ +/* $OpenBSD: ccp.h,v 1.5 1998/05/08 04:52:20 millert Exp $ */ /* * ccp.h - Definitions for PPP Compression Control Protocol. @@ -26,7 +26,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * Id: ccp.h,v 1.7 1996/07/01 01:11:49 paulus Exp + * Id: ccp.h,v 1.8 1998/03/25 01:25:03 paulus Exp $ */ typedef struct ccp_options { @@ -34,6 +34,8 @@ typedef struct ccp_options { u_int deflate: 1; /* do Deflate? */ u_int predictor_1: 1; /* do Predictor-1? */ u_int predictor_2: 1; /* do Predictor-2? */ + u_int deflate_correct: 1; /* use correct code for deflate? */ + u_int deflate_draft: 1; /* use draft RFC code for deflate? */ u_short bsd_bits; /* # bits/code for BSD Compress */ u_short deflate_size; /* lg(window size) for Deflate */ short method; /* code for chosen compression method */ |