Deleted Added
full compact
tcp_usrreq.c (293284) tcp_usrreq.c (294535)
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California.
4 * Copyright (c) 2006-2007 Robert N. M. Watson
5 * Copyright (c) 2010-2011 Juniper Networks, Inc.
6 * All rights reserved.
7 *
8 * Portions of this software were developed by Robert N. M. Watson under

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

31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
36 */
37
38#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1993
3 * The Regents of the University of California.
4 * Copyright (c) 2006-2007 Robert N. M. Watson
5 * Copyright (c) 2010-2011 Juniper Networks, Inc.
6 * All rights reserved.
7 *
8 * Portions of this software were developed by Robert N. M. Watson under

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

31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/sys/netinet/tcp_usrreq.c 293284 2016-01-07 00:14:42Z glebius $");
39__FBSDID("$FreeBSD: head/sys/netinet/tcp_usrreq.c 294535 2016-01-21 22:34:51Z glebius $");
40
41#include "opt_ddb.h"
42#include "opt_inet.h"
43#include "opt_inet6.h"
44#include "opt_tcpdebug.h"
45
46#include <sys/param.h>
47#include <sys/systm.h>

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

64#include <ddb/ddb.h>
65#endif
66
67#include <net/if.h>
68#include <net/if_var.h>
69#include <net/route.h>
70#include <net/vnet.h>
71
40
41#include "opt_ddb.h"
42#include "opt_inet.h"
43#include "opt_inet6.h"
44#include "opt_tcpdebug.h"
45
46#include <sys/param.h>
47#include <sys/systm.h>

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

64#include <ddb/ddb.h>
65#endif
66
67#include <net/if.h>
68#include <net/if_var.h>
69#include <net/route.h>
70#include <net/vnet.h>
71
72#include <netinet/cc.h>
73#include <netinet/in.h>
74#include <netinet/in_kdtrace.h>
75#include <netinet/in_pcb.h>
76#include <netinet/in_systm.h>
77#include <netinet/in_var.h>
78#include <netinet/ip_var.h>
79#ifdef INET6
80#include <netinet/ip6.h>
81#include <netinet6/in6_pcb.h>
82#include <netinet6/ip6_var.h>
83#include <netinet6/scope6_var.h>
84#endif
85#ifdef TCP_RFC7413
86#include <netinet/tcp_fastopen.h>
87#endif
72#include <netinet/in.h>
73#include <netinet/in_kdtrace.h>
74#include <netinet/in_pcb.h>
75#include <netinet/in_systm.h>
76#include <netinet/in_var.h>
77#include <netinet/ip_var.h>
78#ifdef INET6
79#include <netinet/ip6.h>
80#include <netinet6/in6_pcb.h>
81#include <netinet6/ip6_var.h>
82#include <netinet6/scope6_var.h>
83#endif
84#ifdef TCP_RFC7413
85#include <netinet/tcp_fastopen.h>
86#endif
87#include <netinet/tcp.h>
88#include <netinet/tcp_fsm.h>
89#include <netinet/tcp_seq.h>
90#include <netinet/tcp_timer.h>
91#include <netinet/tcp_var.h>
92#include <netinet/tcpip.h>
88#include <netinet/tcp_fsm.h>
89#include <netinet/tcp_seq.h>
90#include <netinet/tcp_timer.h>
91#include <netinet/tcp_var.h>
92#include <netinet/tcpip.h>
93#include <netinet/tcp_cc.h>
93#ifdef TCPPCAP
94#include <netinet/tcp_pcap.h>
95#endif
96#ifdef TCPDEBUG
97#include <netinet/tcp_debug.h>
98#endif
99#ifdef TCP_OFFLOAD
100#include <netinet/tcp_offload.h>

--- 2178 unchanged lines hidden ---
94#ifdef TCPPCAP
95#include <netinet/tcp_pcap.h>
96#endif
97#ifdef TCPDEBUG
98#include <netinet/tcp_debug.h>
99#endif
100#ifdef TCP_OFFLOAD
101#include <netinet/tcp_offload.h>

--- 2178 unchanged lines hidden ---