X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=ultrix%2Fif_pppvar.h;h=c4f5eadcb08c0abdc4d162b56836b85055543e5d;hp=419311159a6df62d9c26d037df23816f22a060da;hb=49638dd3efa6c3455f5e621c4281b461d5a0eb74;hpb=306cd74939c466d0ecdd9fe3fb18d83bbd8b0fc8 diff --git a/ultrix/if_pppvar.h b/ultrix/if_pppvar.h index 4193111..c4f5ead 100644 --- a/ultrix/if_pppvar.h +++ b/ultrix/if_pppvar.h @@ -1,4 +1,4 @@ -/* $Id: if_pppvar.h,v 1.3 1994/12/13 03:26:08 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. * @@ -66,20 +66,19 @@ struct ppp_softc { struct mbuf *sc_togo; /* output packet ready to go */ struct mbuf *sc_npqueue; /* output packets not to be sent yet */ struct mbuf **sc_npqtail; /* ptr to last next ptr in npqueue */ -#ifdef VJC - struct slcompress sc_comp; /* vjc control buffer */ -#endif - u_int sc_bytessent; /* count of octets sent */ - u_int sc_bytesrcvd; /* count of octets received */ + struct pppstat sc_stats; /* count of bytes/pkts sent/rcvd */ caddr_t sc_bpf; /* hook for BPF */ enum NPmode sc_npmode[NUM_NP]; /* what to do with each NP */ struct compressor *sc_xcomp; /* transmit compressor */ void *sc_xc_state; /* transmit compressor state */ struct compressor *sc_rcomp; /* receive decompressor */ void *sc_rc_state; /* receive decompressor state */ - int sc_last_sent; /* time (secs) last NP pkt sent */ - int sc_last_recv; /* time (secs) last NP pkt rcvd */ - + time_t sc_last_sent; /* time (secs) last NP pkt sent */ + time_t sc_last_recv; /* time (secs) last NP pkt rcvd */ +#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_long sc_rasyncmap; /* receive async control char map */ @@ -96,9 +95,10 @@ struct ppp_softc { 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, int cmd, caddr_t data, - int flag, struct proc *p)); -void ppppktin __P((struct ppp_softc *sc, struct mbuf *m, int lost)); -struct mbuf *ppp_dequeue __P((struct ppp_softc *sc)); +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); +struct mbuf *ppp_dequeue(struct ppp_softc *sc);