From: Paul Mackerras Date: Wed, 4 Feb 1998 01:43:39 +0000 (+0000) Subject: make pppoutput global X-Git-Tag: RELEASE_2_3_6~123 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=b19e69fdab6833ef281161b1a50617b7ecf4e6cd;hp=91fc199e719dbc63e285c677a2d559bf3894bbab make pppoutput global --- diff --git a/ultrix/if_ppp.c b/ultrix/if_ppp.c index d93f5d3..a150dd2 100644 --- a/ultrix/if_ppp.c +++ b/ultrix/if_ppp.c @@ -72,7 +72,7 @@ * Robert Olsson 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 */ @@ -121,7 +121,6 @@ #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)); diff --git a/ultrix/if_pppvar.h b/ultrix/if_pppvar.h index a894e4b..c4f5ead 100644 --- a/ultrix/if_pppvar.h +++ b/ultrix/if_pppvar.h @@ -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);