Deleted Added
full compact
tcp_var.h (12635) tcp_var.h (12881)
1/*
2 * Copyright (c) 1982, 1986, 1993, 1994, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95
1/*
2 * Copyright (c) 1982, 1986, 1993, 1994, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95
34 * $Id: tcp_var.h,v 1.23 1995/11/14 20:34:50 phk Exp $
34 * $Id: tcp_var.h,v 1.24 1995/12/05 17:46:50 wollman Exp $
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
39/*
40 * Kernel variables for tcp.
41 */
42

--- 284 unchanged lines hidden (view full) ---

327extern int tcp_mssdflt; /* XXX */
328extern u_long tcp_now; /* for RFC 1323 timestamps */
329extern int tcp_rttdflt; /* XXX */
330extern u_short tcp_lastport; /* last assigned port */
331
332void tcp_canceltimers __P((struct tcpcb *));
333struct tcpcb *
334 tcp_close __P((struct tcpcb *));
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
39/*
40 * Kernel variables for tcp.
41 */
42

--- 284 unchanged lines hidden (view full) ---

327extern int tcp_mssdflt; /* XXX */
328extern u_long tcp_now; /* for RFC 1323 timestamps */
329extern int tcp_rttdflt; /* XXX */
330extern u_short tcp_lastport; /* last assigned port */
331
332void tcp_canceltimers __P((struct tcpcb *));
333struct tcpcb *
334 tcp_close __P((struct tcpcb *));
335void tcp_ctlinput __P((int, struct sockaddr *, struct ip *));
335void tcp_ctlinput __P((int, struct sockaddr *, void *));
336int tcp_ctloutput __P((int, struct socket *, int, int, struct mbuf **));
337struct tcpcb *
338 tcp_drop __P((struct tcpcb *, int));
339void tcp_drain __P((void));
340void tcp_fasttimo __P((void));
341struct rmxp_tao *
342 tcp_gettaocache __P((struct inpcb *));
343void tcp_init __P((void));

--- 28 unchanged lines hidden ---
336int tcp_ctloutput __P((int, struct socket *, int, int, struct mbuf **));
337struct tcpcb *
338 tcp_drop __P((struct tcpcb *, int));
339void tcp_drain __P((void));
340void tcp_fasttimo __P((void));
341struct rmxp_tao *
342 tcp_gettaocache __P((struct inpcb *));
343void tcp_init __P((void));

--- 28 unchanged lines hidden ---