compromise fixes for duped keys
[unix-history] / usr / src / sys / net / if_slvar.h
CommitLineData
6cfe221b 1/*-
c8dfc989
KB
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
6cfe221b
KB
4 *
5 * %sccs.include.redist.c%
6 *
5f3344a7 7 * @(#)if_slvar.h 8.3 (Berkeley) %G%
6cfe221b
KB
8 *
9 * $Header: if_slvar.h,v 1.3 89/05/31 02:25:18 van Exp $
10 */
404373be
MK
11
12/*
9de3e30d
MK
13 * Definitions for SLIP interface data structures
14 *
6cfe221b 15 * (This exists so programs like slstats can get at the definition
9de3e30d 16 * of sl_softc.)
404373be
MK
17 */
18struct sl_softc {
19 struct ifnet sc_if; /* network-visible interface */
9de3e30d 20 struct ifqueue sc_fastq; /* interactive output queue */
404373be 21 struct tty *sc_ttyp; /* pointer to tty structure */
9de3e30d
MK
22 u_char *sc_mp; /* pointer to next available buf char */
23 u_char *sc_ep; /* pointer to last available buf char */
24 u_char *sc_buf; /* input buffer */
25 u_int sc_flags; /* see below */
26 u_int sc_escape; /* =1 if last char input was FRAME_ESCAPE */
9de3e30d 27 long sc_lasttime; /* last time a char arrived */
9de3e30d 28 long sc_abortcount; /* number of abort esacpe chars */
1db6ff40 29 long sc_starttime; /* time of first abort in window */
270f7144 30#ifdef INET /* XXX */
9de3e30d 31 struct slcompress sc_comp; /* tcp compression data */
270f7144 32#endif
3509f52f 33 caddr_t sc_bpf; /* BPF data */
404373be
MK
34};
35
3509f52f
CD
36/* internal flags */
37#define SC_ERROR 0x0001 /* had an input error */
38
8985215b 39/* visible flags */
1db6ff40
MK
40#define SC_COMPRESS IFF_LINK0 /* compress TCP traffic */
41#define SC_NOICMP IFF_LINK1 /* supress ICMP traffic */
42#define SC_AUTOCOMP IFF_LINK2 /* auto-enable TCP compression */
404373be 43
2a67f029 44#ifdef KERNEL
3509f52f
CD
45void slattach __P((void));
46void slclose __P((struct tty *));
47void slinput __P((int, struct tty *));
48int slioctl __P((struct ifnet *, int, caddr_t));
49int slopen __P((dev_t, struct tty *));
50int sloutput __P((struct ifnet *,
2a67f029 51 struct mbuf *, struct sockaddr *, struct rtentry *));
3509f52f
CD
52void slstart __P((struct tty *));
53int sltioctl __P((struct tty *, int, caddr_t, int));
54#endif /* KERNEL */