Deleted Added
full compact
tcp_subr.c (293470) tcp_subr.c (294535)
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 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

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

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_subr.c 8.2 (Berkeley) 5/24/95
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 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

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

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_subr.c 8.2 (Berkeley) 5/24/95
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet/tcp_subr.c 293470 2016-01-09 09:34:39Z melifaro $");
33__FBSDID("$FreeBSD: head/sys/netinet/tcp_subr.c 294535 2016-01-21 22:34:51Z glebius $");
34
35#include "opt_compat.h"
36#include "opt_inet.h"
37#include "opt_inet6.h"
38#include "opt_ipsec.h"
39#include "opt_tcpdebug.h"
40
41#include <sys/param.h>

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

63
64#include <vm/uma.h>
65
66#include <net/route.h>
67#include <net/if.h>
68#include <net/if_var.h>
69#include <net/vnet.h>
70
34
35#include "opt_compat.h"
36#include "opt_inet.h"
37#include "opt_inet6.h"
38#include "opt_ipsec.h"
39#include "opt_tcpdebug.h"
40
41#include <sys/param.h>

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

63
64#include <vm/uma.h>
65
66#include <net/route.h>
67#include <net/if.h>
68#include <net/if_var.h>
69#include <net/vnet.h>
70
71#include <netinet/cc.h>
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.h>
78#include <netinet/ip_icmp.h>
79#include <netinet/ip_var.h>
80#ifdef INET6
81#include <netinet/ip6.h>
82#include <netinet6/in6_pcb.h>
83#include <netinet6/ip6_var.h>
84#include <netinet6/scope6_var.h>
85#include <netinet6/nd6.h>
86#endif
87
88#ifdef TCP_RFC7413
89#include <netinet/tcp_fastopen.h>
90#endif
71#include <netinet/in.h>
72#include <netinet/in_kdtrace.h>
73#include <netinet/in_pcb.h>
74#include <netinet/in_systm.h>
75#include <netinet/in_var.h>
76#include <netinet/ip.h>
77#include <netinet/ip_icmp.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#include <netinet6/nd6.h>
85#endif
86
87#ifdef TCP_RFC7413
88#include <netinet/tcp_fastopen.h>
89#endif
90#include <netinet/tcp.h>
91#include <netinet/tcp_fsm.h>
92#include <netinet/tcp_seq.h>
93#include <netinet/tcp_timer.h>
94#include <netinet/tcp_var.h>
95#include <netinet/tcp_syncache.h>
91#include <netinet/tcp_fsm.h>
92#include <netinet/tcp_seq.h>
93#include <netinet/tcp_timer.h>
94#include <netinet/tcp_var.h>
95#include <netinet/tcp_syncache.h>
96#include <netinet/tcp_cc.h>
96#ifdef INET6
97#include <netinet6/tcp6_var.h>
98#endif
99#include <netinet/tcpip.h>
100#ifdef TCPPCAP
101#include <netinet/tcp_pcap.h>
102#endif
103#ifdef TCPDEBUG

--- 2818 unchanged lines hidden ---
97#ifdef INET6
98#include <netinet6/tcp6_var.h>
99#endif
100#include <netinet/tcpip.h>
101#ifdef TCPPCAP
102#include <netinet/tcp_pcap.h>
103#endif
104#ifdef TCPDEBUG

--- 2818 unchanged lines hidden ---