X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=netbsd-1.2%2Fslcompress.h;h=196fc1e1b282c2f4eb8eba0612006ecea77dd88e;hp=f5e0cf7b610b120b2948fe3ef316e110d3c0fbbd;hb=7a4dc0ff500aaa176a41965d8d4ad15a97a70904;hpb=e28f2e9f4f40cbe35009ba554c5bd29fd456416b diff --git a/netbsd-1.2/slcompress.h b/netbsd-1.2/slcompress.h index f5e0cf7..196fc1e 100644 --- a/netbsd-1.2/slcompress.h +++ b/netbsd-1.2/slcompress.h @@ -1,5 +1,5 @@ -/* $NetBSD: slcompress.h,v 1.9 1995/07/04 06:28:29 paulus Exp $ */ -/* Id: slcompress.h,v 1.1 1995/12/11 05:17:12 paulus Exp */ +/* $NetBSD: slcompress.h,v 1.12 1998/02/09 17:43:56 perry Exp $ */ +/* Id: slcompress.h,v 1.4 1994/09/21 06:50:08 paulus Exp */ /* * Copyright (c) 1989, 1993 @@ -43,6 +43,9 @@ * - Initial distribution. */ +#ifndef _NET_SLCOMPRESS_H_ +#define _NET_SLCOMPRESS_H_ + #define MAX_STATES 16 /* must be > 2 and < 256 */ #define MAX_HDR MLEN /* XXX 4bsd-ism: should really be 128 */ @@ -155,9 +158,12 @@ struct slcompress { /* flag values */ #define SLF_TOSS 1 /* tossing rcvd frames because of input err */ -void sl_compress_init __P((struct slcompress *, int)); -u_int sl_compress_tcp __P((struct mbuf *, - struct ip *, struct slcompress *, int)); -int sl_uncompress_tcp __P((u_char **, int, u_int, struct slcompress *)); -int sl_uncompress_tcp_core __P((u_char *, int, int, u_int, - struct slcompress *, u_char **, u_int *)); +void sl_compress_init __P((struct slcompress *)); +void sl_compress_setup __P((struct slcompress *, int)); +u_int sl_compress_tcp __P((struct mbuf *, + struct ip *, struct slcompress *, int)); +int sl_uncompress_tcp __P((u_char **, int, u_int, struct slcompress *)); +int sl_uncompress_tcp_core __P((u_char *, int, int, u_int, + struct slcompress *, u_char **, u_int *)); + +#endif /* _NET_SLCOMPRESS_H_ */