]> git.ozlabs.org Git - ppp.git/blobdiff - ultrix/if_ppp.c
chatchat stuff from gpk@onramp.net
[ppp.git] / ultrix / if_ppp.c
index ed4179814f24af9436f0bc733a26c64b368f6dff..484a6bfeb7084100f094127e08eaeb46a261e60e 100644 (file)
@@ -72,7 +72,7 @@
  * Robert Olsson <robert@robur.slu.se> and Paul Mackerras.
  */
 
-/* $Id: if_ppp.c,v 1.12 1996/09/26 06:18:37 paulus Exp $ */
+/* $Id: if_ppp.c,v 1.15 1998/03/25 03:11:35 paulus Exp $ */
 /* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
 /* from NetBSD: if_ppp.c,v 1.15.2.2 1994/07/28 05:17:58 cgd Exp */
 
 #include "ppp-comp.h"
 #endif
 
+static int     pppsioctl(struct ifnet *, int, caddr_t);
 static void    ppp_requeue __P((struct ppp_softc *));
 static void    ppp_outpkt __P((struct ppp_softc *));
 static void    ppp_ccp __P((struct ppp_softc *, struct mbuf *m, int rcvd));
@@ -161,6 +162,7 @@ static u_short interactive_ports[8] = {
 
 extern struct compressor ppp_bsd_compress;
 extern struct compressor ppp_deflate;
+extern struct compressor ppp_deflate_draft;
 
 struct compressor *ppp_compressors[] = {
 #if DO_BSD_COMPRESS
@@ -168,6 +170,7 @@ struct compressor *ppp_compressors[] = {
 #endif
 #if DO_DEFLATE
     &ppp_deflate,
+    &ppp_deflate_draft,
 #endif
     NULL
 };