]> git.ozlabs.org Git - ppp.git/blobdiff - modules/ppp_comp.c
Support PPP Deflate compression
[ppp.git] / modules / ppp_comp.c
index 3795647c3d94c7f6c975fb142d296fb3e1096e2c..215830eeaa7166dbf048ece6d0c7d048e2d8428a 100644 (file)
@@ -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,10 +120,14 @@ 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
 };