X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=netbsd-1.1%2Fif_pppvar.h;h=061c1c17a4ab499154bcc49917642b7a77c2a39c;hp=2b4709feea98a8f845fce0d6b165d60d10881486;hb=a25ab4af5d8ea4f1760b5db5f5ee5b65bbfcd53b;hpb=77eb4c7d44153062200841b90d553cd9b1c58489 diff --git a/netbsd-1.1/if_pppvar.h b/netbsd-1.1/if_pppvar.h index 2b4709f..061c1c1 100644 --- a/netbsd-1.1/if_pppvar.h +++ b/netbsd-1.1/if_pppvar.h @@ -1,4 +1,4 @@ -/* $Id: if_pppvar.h,v 1.2 1996/04/04 03:22:02 paulus Exp $ */ +/* $Id: if_pppvar.h,v 1.4 1997/04/30 05:47:02 paulus Exp $ */ /* * if_pppvar.h - private structures and declarations for PPP. @@ -76,12 +76,14 @@ struct ppp_softc { void *sc_rc_state; /* receive decompressor state */ time_t sc_last_sent; /* time (secs) last NP pkt sent */ time_t sc_last_recv; /* time (secs) last NP pkt rcvd */ +#ifdef PPP_FILTER struct bpf_program sc_pass_filt; /* filter for packets to pass */ struct bpf_program sc_active_filt; /* filter for "non-idle" packets */ +#endif /* PPP_FILTER */ #ifdef VJC struct slcompress *sc_comp; /* vjc control buffer */ #endif - + /* Device-dependent part for async lines. */ ext_accm sc_asyncmap; /* async control character map */ u_int32_t sc_rasyncmap; /* receive async control char map */ @@ -96,11 +98,16 @@ struct ppp_softc { int sc_rawin_count; /* # in sc_rawin */ }; +#ifdef _KERNEL struct ppp_softc ppp_softc[NPPP]; struct ppp_softc *pppalloc __P((pid_t pid)); void pppdealloc __P((struct ppp_softc *sc)); int pppioctl __P((struct ppp_softc *sc, u_long cmd, caddr_t data, int flag, struct proc *p)); +void ppp_restart __P((struct ppp_softc *sc)); void ppppktin __P((struct ppp_softc *sc, struct mbuf *m, int lost)); struct mbuf *ppp_dequeue __P((struct ppp_softc *sc)); +int pppoutput __P((struct ifnet *, struct mbuf *, + struct sockaddr *, struct rtentry *)); +#endif /* _KERNEL */