]> git.ozlabs.org Git - ppp.git/commitdiff
make pppoutput global
authorPaul Mackerras <paulus@samba.org>
Wed, 4 Feb 1998 01:43:39 +0000 (01:43 +0000)
committerPaul Mackerras <paulus@samba.org>
Wed, 4 Feb 1998 01:43:39 +0000 (01:43 +0000)
ultrix/if_ppp.c
ultrix/if_pppvar.h

index d93f5d3e8c6c8f407d8795911cff812d9b4a21cf..a150dd25e5842838815f13e2b734a30d3b226bd3 100644 (file)
@@ -72,7 +72,7 @@
  * Robert Olsson <robert@robur.slu.se> and Paul Mackerras.
  */
 
-/* $Id: if_ppp.c,v 1.13 1997/03/04 03:45:17 paulus Exp $ */
+/* $Id: if_ppp.c,v 1.14 1998/02/04 01:43:39 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 */
 
 #endif
 
 static int     pppsioctl(struct ifnet *, int, caddr_t);
-static int     pppoutput(struct ifnet *, struct mbuf *, struct sockaddr *);
 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));
index a894e4b89abc384f5bce353c1abf37dae5680fc9..c4f5eadcb08c0abdc4d162b56836b85055543e5d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: if_pppvar.h,v 1.5 1996/09/26 06:19:03 paulus Exp $ */
+/*     $Id: if_pppvar.h,v 1.6 1998/02/04 01:43:39 paulus Exp $ */
 /*
  * if_pppvar.h - private structures and declarations for PPP.
  *
@@ -97,6 +97,7 @@ struct        ppp_softc ppp_softc[NPPP];
 
 struct ppp_softc *pppalloc(pid_t pid);
 void   pppdealloc(struct ppp_softc *sc);
+int    pppoutput(struct ifnet *, struct mbuf *, struct sockaddr *);
 int    pppioctl(struct ppp_softc *sc, int cmd, caddr_t data, int flag);
 void   ppp_restart(struct ppp_softc *sc);
 void   ppppktin(struct ppp_softc *sc, struct mbuf *m, int lost);