Deleted Added
full compact
tcp_var.h (52904) tcp_var.h (55009)
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 * $FreeBSD: head/sys/netinet/tcp_var.h 52904 1999-11-05 14:41:39Z shin $
34 * $FreeBSD: head/sys/netinet/tcp_var.h 55009 1999-12-22 19:13:38Z shin $
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
39/*
40 * Kernel variables for tcp.
41 */
42

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

356int tcp_ctloutput __P((struct socket *, struct sockopt *));
357struct tcpcb *
358 tcp_drop __P((struct tcpcb *, int));
359void tcp_drain __P((void));
360void tcp_fasttimo __P((void));
361struct rmxp_tao *
362 tcp_gettaocache __P((struct inpcb *));
363void tcp_init __P((void));
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
39/*
40 * Kernel variables for tcp.
41 */
42

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

356int tcp_ctloutput __P((struct socket *, struct sockopt *));
357struct tcpcb *
358 tcp_drop __P((struct tcpcb *, int));
359void tcp_drain __P((void));
360void tcp_fasttimo __P((void));
361struct rmxp_tao *
362 tcp_gettaocache __P((struct inpcb *));
363void tcp_init __P((void));
364void tcp_input __P((struct mbuf *, int));
364void tcp_input __P((struct mbuf *, int, int));
365void tcp_mss __P((struct tcpcb *, int));
366int tcp_mssopt __P((struct tcpcb *));
367void tcp_mtudisc __P((struct inpcb *, int));
368struct tcpcb *
369 tcp_newtcpcb __P((struct inpcb *));
370int tcp_output __P((struct tcpcb *));
371void tcp_quench __P((struct inpcb *, int));
372void tcp_respond __P((struct tcpcb *,

--- 18 unchanged lines hidden ---
365void tcp_mss __P((struct tcpcb *, int));
366int tcp_mssopt __P((struct tcpcb *));
367void tcp_mtudisc __P((struct inpcb *, int));
368struct tcpcb *
369 tcp_newtcpcb __P((struct inpcb *));
370int tcp_output __P((struct tcpcb *));
371void tcp_quench __P((struct inpcb *, int));
372void tcp_respond __P((struct tcpcb *,

--- 18 unchanged lines hidden ---