summaryrefslogtreecommitdiff
path: root/modules/ppp_comp.c
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1996-01-18 03:19:11 +0000
committerPaul Mackerras <paulus@samba.org>1996-01-18 03:19:11 +0000
commit07a34207f71a960b27f188c2a221d1656e009871 (patch)
tree5699269b2dfa9ca97b7b586be379544a7c4460d7 /modules/ppp_comp.c
parent00d6b31a5087fa0bb2c9cdbc95d2dcdafca9be9b (diff)
downloadppp-07a34207f71a960b27f188c2a221d1656e009871.tar.gz
Support PPP Deflate compression
Diffstat (limited to 'modules/ppp_comp.c')
-rw-r--r--modules/ppp_comp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/ppp_comp.c b/modules/ppp_comp.c
index 3795647..215830e 100644
--- a/modules/ppp_comp.c
+++ b/modules/ppp_comp.c
@@ -24,7 +24,7 @@
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
* OR MODIFICATIONS.
*
- * $Id: ppp_comp.c,v 1.1 1995/12/11 05:06:43 paulus Exp $
+ * $Id: ppp_comp.c,v 1.2 1996/01/18 03:18:07 paulus Exp $
*/
/*
@@ -120,11 +120,15 @@ typedef struct comp_state {
*/
extern struct compressor ppp_bsd_compress;
+extern struct compressor ppp_deflate;
struct compressor *ppp_compressors[] = {
#if DO_BSD_COMPRESS
&ppp_bsd_compress,
#endif
+#if DO_DEFLATE
+ &ppp_deflate,
+#endif
NULL
};