From: Paul Mackerras Date: Mon, 1 Jul 1996 01:11:49 +0000 (+0000) Subject: moved protos to ccp.c X-Git-Tag: RELEASE_2_3_6~420 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=35832a003df5a3fdd9d9dafa608184b666b8629b moved protos to ccp.c --- diff --git a/pppd/ccp.h b/pppd/ccp.h index 9bcac4a..1f15345 100644 --- a/pppd/ccp.h +++ b/pppd/ccp.h @@ -24,7 +24,7 @@ * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, * OR MODIFICATIONS. * - * $Id: ccp.h,v 1.6 1995/12/18 03:44:41 paulus Exp $ + * $Id: ccp.h,v 1.7 1996/07/01 01:11:49 paulus Exp $ */ typedef struct ccp_options { @@ -34,6 +34,7 @@ typedef struct ccp_options { 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 */ + short method; /* code for chosen compression method */ } ccp_options; extern fsm ccp_fsm[]; @@ -42,16 +43,4 @@ extern ccp_options ccp_gotoptions[]; extern ccp_options ccp_allowoptions[]; extern ccp_options ccp_hisoptions[]; -void ccp_init __P((int unit)); -void ccp_open __P((int unit)); -void ccp_close __P((int unit, char *)); -void ccp_lowerup __P((int unit)); -void ccp_lowerdown __P((int)); -void ccp_input __P((int unit, u_char *pkt, int len)); -void ccp_protrej __P((int unit)); -int ccp_printpkt __P((u_char *pkt, int len, - void (*printer) __P((void *, char *, ...)), - void *arg)); -void ccp_datainput __P((int unit, u_char *pkt, int len)); - extern struct protent ccp_protent;