1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * ppp-comp.h - Definitions for doing PPP packet compression.
5 * Copyright 1994-1998 Paul Mackerras.
7 #ifndef _NET_PPP_COMP_H
8 #define _NET_PPP_COMP_H
10 #include <uapi/linux/ppp-comp.h>
16 * The following symbols control whether we include code for
17 * various compression methods.
20 #ifndef DO_BSD_COMPRESS
21 #define DO_BSD_COMPRESS 1 /* by default, include BSD-Compress */
24 #define DO_DEFLATE 1 /* by default, include Deflate */
26 #define DO_PREDICTOR_1 0
27 #define DO_PREDICTOR_2 0
30 * Structure giving methods for compression/decompression.
34 int compress_proto
; /* CCP compression protocol number */
36 /* Allocate space for a compressor (transmit side) */
37 void *(*comp_alloc
) (unsigned char *options
, int opt_len
);
39 /* Free space used by a compressor */
40 void (*comp_free
) (void *state
);
42 /* Initialize a compressor */
43 int (*comp_init
) (void *state
, unsigned char *options
,
44 int opt_len
, int unit
, int opthdr
, int debug
);
46 /* Reset a compressor */
47 void (*comp_reset
) (void *state
);
49 /* Compress a packet */
50 int (*compress
) (void *state
, unsigned char *rptr
,
51 unsigned char *obuf
, int isize
, int osize
);
53 /* Return compression statistics */
54 void (*comp_stat
) (void *state
, struct compstat
*stats
);
56 /* Allocate space for a decompressor (receive side) */
57 void *(*decomp_alloc
) (unsigned char *options
, int opt_len
);
59 /* Free space used by a decompressor */
60 void (*decomp_free
) (void *state
);
62 /* Initialize a decompressor */
63 int (*decomp_init
) (void *state
, unsigned char *options
,
64 int opt_len
, int unit
, int opthdr
, int mru
,
67 /* Reset a decompressor */
68 void (*decomp_reset
) (void *state
);
70 /* Decompress a packet. */
71 int (*decompress
) (void *state
, unsigned char *ibuf
, int isize
,
72 unsigned char *obuf
, int osize
);
74 /* Update state for an incompressible packet received */
75 void (*incomp
) (void *state
, unsigned char *ibuf
, int icnt
);
77 /* Return decompression statistics */
78 void (*decomp_stat
) (void *state
, struct compstat
*stats
);
80 /* Used in locking compressor modules */
82 /* Extra skb space needed by the compressor algorithm */
83 unsigned int comp_extra
;
87 * The return value from decompress routine is the length of the
88 * decompressed packet if successful, otherwise DECOMP_ERROR
89 * or DECOMP_FATALERROR if an error occurred.
91 * We need to make this distinction so that we can disable certain
92 * useful functionality, namely sending a CCP reset-request as a result
93 * of an error detected after decompression. This is to avoid infringing
94 * a patent held by Motorola.
95 * Don't you just lurve software patents.
98 #define DECOMP_ERROR -1 /* error detected before decomp. */
99 #define DECOMP_FATALERROR -2 /* error detected after decomp. */
101 extern int ppp_register_compressor(struct compressor
*);
102 extern void ppp_unregister_compressor(struct compressor
*);
103 #endif /* _NET_PPP_COMP_H */