From: Paul Mackerras Date: Mon, 1 Jul 1996 01:04:37 +0000 (+0000) Subject: removed bpf stuff; run start routine at splsoftnet X-Git-Tag: RELEASE_2_3_6~428 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=ef8f4f5b563ed0bea51e9c18971d52f05b624d9c removed bpf stuff; run start routine at splsoftnet --- diff --git a/netbsd-1.1/if_pppvar.h b/netbsd-1.1/if_pppvar.h index 2b4709f..202f1e4 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.3 1996/07/01 01:04:37 paulus Exp $ */ /* * if_pppvar.h - private structures and declarations for PPP. @@ -76,12 +76,10 @@ 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 */ - struct bpf_program sc_pass_filt; /* filter for packets to pass */ - struct bpf_program sc_active_filt; /* filter for "non-idle" packets */ #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 */ @@ -102,5 +100,6 @@ 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));