Home | History | Annotate | Line # | Download | only in net
if_pppvar.h revision 1.6
      1 /*	$NetBSD: if_pppvar.h,v 1.6 1997/03/12 20:26:54 christos Exp $	*/
      2 /*	Id: if_pppvar.h,v 1.3 1996/07/01 01:04:37 paulus Exp	 */
      3 
      4 /*
      5  * if_pppvar.h - private structures and declarations for PPP.
      6  *
      7  * Copyright (c) 1994 The Australian National University.
      8  * All rights reserved.
      9  *
     10  * Permission to use, copy, modify, and distribute this software and its
     11  * documentation is hereby granted, provided that the above copyright
     12  * notice appears in all copies.  This software is provided without any
     13  * warranty, express or implied. The Australian National University
     14  * makes no representations about the suitability of this software for
     15  * any purpose.
     16  *
     17  * IN NO EVENT SHALL THE AUSTRALIAN NATIONAL UNIVERSITY BE LIABLE TO ANY
     18  * PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
     19  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
     20  * THE AUSTRALIAN NATIONAL UNIVERSITY HAVE BEEN ADVISED OF THE POSSIBILITY
     21  * OF SUCH DAMAGE.
     22  *
     23  * THE AUSTRALIAN NATIONAL UNIVERSITY SPECIFICALLY DISCLAIMS ANY WARRANTIES,
     24  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
     25  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
     26  * ON AN "AS IS" BASIS, AND THE AUSTRALIAN NATIONAL UNIVERSITY HAS NO
     27  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
     28  * OR MODIFICATIONS.
     29  *
     30  * Copyright (c) 1989 Carnegie Mellon University.
     31  * All rights reserved.
     32  *
     33  * Redistribution and use in source and binary forms are permitted
     34  * provided that the above copyright notice and this paragraph are
     35  * duplicated in all such forms and that any documentation,
     36  * advertising materials, and other materials related to such
     37  * distribution and use acknowledge that the software was developed
     38  * by Carnegie Mellon University.  The name of the
     39  * University may not be used to endorse or promote products derived
     40  * from this software without specific prior written permission.
     41  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
     42  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
     43  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     44  */
     45 
     46 /*
     47  * Supported network protocols.  These values are used for
     48  * indexing sc_npmode.
     49  */
     50 #define NP_IP	0		/* Internet Protocol */
     51 #define NUM_NP	1		/* Number of NPs. */
     52 
     53 /*
     54  * Structure describing each ppp unit.
     55  */
     56 struct ppp_softc {
     57 	struct	ifnet sc_if;		/* network-visible interface */
     58 	int	sc_unit;		/* XXX unit number */
     59 	u_int	sc_flags;		/* control/status bits; see if_ppp.h */
     60 	void	*sc_devp;		/* pointer to device-dep structure */
     61 	void	(*sc_start) __P((struct ppp_softc *));	/* start output proc */
     62 	void	(*sc_ctlp) __P((struct ppp_softc *)); /* rcvd control pkt */
     63 	void	(*sc_relinq) __P((struct ppp_softc *)); /* relinquish ifunit */
     64 	u_int16_t sc_mru;		/* max receive unit */
     65 	pid_t	sc_xfer;		/* used in transferring unit */
     66 	struct	ifqueue sc_rawq;	/* received packets */
     67 	struct	ifqueue sc_inq;		/* queue of input packets for daemon */
     68 	struct	ifqueue sc_fastq;	/* interactive output packet q */
     69 	struct	mbuf *sc_togo;		/* output packet ready to go */
     70 	struct	mbuf *sc_npqueue;	/* output packets not to be sent yet */
     71 	struct	mbuf **sc_npqtail;	/* ptr to last next ptr in npqueue */
     72 	struct	pppstat sc_stats;	/* count of bytes/pkts sent/rcvd */
     73 	caddr_t	sc_bpf;			/* hook for BPF */
     74 	enum	NPmode sc_npmode[NUM_NP]; /* what to do with each NP */
     75 	struct	compressor *sc_xcomp;	/* transmit compressor */
     76 	void	*sc_xc_state;		/* transmit compressor state */
     77 	struct	compressor *sc_rcomp;	/* receive decompressor */
     78 	void	*sc_rc_state;		/* receive decompressor state */
     79 	time_t	sc_last_sent;		/* time (secs) last NP pkt sent */
     80 	time_t	sc_last_recv;		/* time (secs) last NP pkt rcvd */
     81 #ifdef PPP_FILTER
     82 	struct	bpf_program sc_pass_filt;   /* filter for packets to pass */
     83 	struct	bpf_program sc_active_filt; /* filter for "non-idle" packets */
     84 #endif /* PPP_FILTER */
     85 #ifdef	VJC
     86 	struct	slcompress *sc_comp; 	/* vjc control buffer */
     87 #endif
     88 
     89 	/* Device-dependent part for async lines. */
     90 	ext_accm sc_asyncmap;		/* async control character map */
     91 	u_int32_t sc_rasyncmap;		/* receive async control char map */
     92 	struct	mbuf *sc_outm;		/* mbuf chain currently being output */
     93 	struct	mbuf *sc_m;		/* pointer to input mbuf chain */
     94 	struct	mbuf *sc_mc;		/* pointer to current input mbuf */
     95 	char	*sc_mp;			/* ptr to next char in input mbuf */
     96 	u_int16_t sc_ilen;		/* length of input packet so far */
     97 	u_int16_t sc_fcs;		/* FCS so far (input) */
     98 	u_int16_t sc_outfcs;		/* FCS so far for output packet */
     99 	u_char	sc_rawin[16];		/* chars as received */
    100 	int	sc_rawin_count;		/* # in sc_rawin */
    101 };
    102 
    103 #ifdef _KERNEL
    104 struct	ppp_softc ppp_softc[NPPP];
    105 
    106 struct	ppp_softc *pppalloc __P((pid_t pid));
    107 void	pppdealloc __P((struct ppp_softc *sc));
    108 int	pppioctl __P((struct ppp_softc *sc, u_long cmd, caddr_t data,
    109 		      int flag, struct proc *p));
    110 void	ppp_restart __P((struct ppp_softc *sc));
    111 void	ppppktin __P((struct ppp_softc *sc, struct mbuf *m, int lost));
    112 struct	mbuf *ppp_dequeue __P((struct ppp_softc *sc));
    113 #endif /* _KERNEL */
    114