Deleted Added
full compact
tcp_var.h (37622) tcp_var.h (38482)
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.45 1998/06/27 07:30:45 jhay Exp $
34 * $Id: tcp_var.h,v 1.46 1998/07/13 11:09:52 bde Exp $
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
39/*
40 * Kernel variables for tcp.
41 */
42

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

339extern int tcp_mssdflt; /* XXX */
340extern u_long tcp_now; /* for RFC 1323 timestamps */
341extern int tcp_delack_enabled;
342
343void tcp_canceltimers __P((struct tcpcb *));
344struct tcpcb *
345 tcp_close __P((struct tcpcb *));
346void tcp_ctlinput __P((int, struct sockaddr *, void *));
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
39/*
40 * Kernel variables for tcp.
41 */
42

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

339extern int tcp_mssdflt; /* XXX */
340extern u_long tcp_now; /* for RFC 1323 timestamps */
341extern int tcp_delack_enabled;
342
343void tcp_canceltimers __P((struct tcpcb *));
344struct tcpcb *
345 tcp_close __P((struct tcpcb *));
346void tcp_ctlinput __P((int, struct sockaddr *, void *));
347int tcp_ctloutput __P((int, struct socket *, int, int, struct mbuf **,
348 struct proc *));
347int tcp_ctloutput __P((struct socket *, struct sockopt *));
349struct tcpcb *
350 tcp_drop __P((struct tcpcb *, int));
351void tcp_drain __P((void));
352void tcp_fasttimo __P((void));
353struct rmxp_tao *
354 tcp_gettaocache __P((struct inpcb *));
355void tcp_init __P((void));
356void tcp_input __P((struct mbuf *, int));

--- 26 unchanged lines hidden ---
348struct tcpcb *
349 tcp_drop __P((struct tcpcb *, int));
350void tcp_drain __P((void));
351void tcp_fasttimo __P((void));
352struct rmxp_tao *
353 tcp_gettaocache __P((struct inpcb *));
354void tcp_init __P((void));
355void tcp_input __P((struct mbuf *, int));

--- 26 unchanged lines hidden ---