Deleted Added
full compact
tcp_var.h (1817) tcp_var.h (2169)
1/*
2 * Copyright (c) 1982, 1986, 1993, 1994
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.3 (Berkeley) 4/10/94
1/*
2 * Copyright (c) 1982, 1986, 1993, 1994
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.3 (Berkeley) 4/10/94
34 * $Id$
34 * $Id: tcp_var.h,v 1.2 1994/08/02 07:49:17 davidg Exp $
35 */
36
35 */
36
37#ifndef _NETINET_TCP_VAR_H_
38#define _NETINET_TCP_VAR_H_
37/*
38 * Kernel variables for tcp.
39 */
40
41/*
42 * Tcp control block, one per tcp; fields:
43 */
44struct tcpcb {

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

272 tcp_timers __P((struct tcpcb *, int));
273void tcp_trace __P((int, int, struct tcpcb *, struct tcpiphdr *, int));
274struct tcpcb *
275 tcp_usrclosed __P((struct tcpcb *));
276int tcp_usrreq __P((struct socket *,
277 int, struct mbuf *, struct mbuf *, struct mbuf *));
278void tcp_xmit_timer __P((struct tcpcb *, int));
279#endif
39/*
40 * Kernel variables for tcp.
41 */
42
43/*
44 * Tcp control block, one per tcp; fields:
45 */
46struct tcpcb {

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

274 tcp_timers __P((struct tcpcb *, int));
275void tcp_trace __P((int, int, struct tcpcb *, struct tcpiphdr *, int));
276struct tcpcb *
277 tcp_usrclosed __P((struct tcpcb *));
278int tcp_usrreq __P((struct socket *,
279 int, struct mbuf *, struct mbuf *, struct mbuf *));
280void tcp_xmit_timer __P((struct tcpcb *, int));
281#endif
282
283#endif