Deleted Added
full compact
tcp_var.h (253083) tcp_var.h (254889)
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95
30 * $FreeBSD: head/sys/netinet/tcp_var.h 253083 2013-07-09 09:43:03Z ae $
30 * $FreeBSD: head/sys/netinet/tcp_var.h 254889 2013-08-25 21:54:41Z markj $
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38#ifdef _KERNEL

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

696int tcp_mssopt(struct in_conninfo *);
697struct inpcb *
698 tcp_drop_syn_sent(struct inpcb *, int);
699struct inpcb *
700 tcp_mtudisc(struct inpcb *, int);
701struct tcpcb *
702 tcp_newtcpcb(struct inpcb *);
703int tcp_output(struct tcpcb *);
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38#ifdef _KERNEL

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

696int tcp_mssopt(struct in_conninfo *);
697struct inpcb *
698 tcp_drop_syn_sent(struct inpcb *, int);
699struct inpcb *
700 tcp_mtudisc(struct inpcb *, int);
701struct tcpcb *
702 tcp_newtcpcb(struct inpcb *);
703int tcp_output(struct tcpcb *);
704void tcp_state_change(struct tcpcb *, int);
704void tcp_respond(struct tcpcb *, void *,
705 struct tcphdr *, struct mbuf *, tcp_seq, tcp_seq, int);
706void tcp_tw_init(void);
707#ifdef VIMAGE
708void tcp_tw_destroy(void);
709#endif
710void tcp_tw_zone_change(void);
711int tcp_twcheck(struct inpcb *, struct tcpopt *, struct tcphdr *,

--- 45 unchanged lines hidden ---
705void tcp_respond(struct tcpcb *, void *,
706 struct tcphdr *, struct mbuf *, tcp_seq, tcp_seq, int);
707void tcp_tw_init(void);
708#ifdef VIMAGE
709void tcp_tw_destroy(void);
710#endif
711void tcp_tw_zone_change(void);
712int tcp_twcheck(struct inpcb *, struct tcpopt *, struct tcphdr *,

--- 45 unchanged lines hidden ---