Deleted Added
full compact
tcp_output.c (293910) tcp_output.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_output.c 8.4 (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_output.c 8.4 (Berkeley) 5/24/95
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet/tcp_output.c 293910 2016-01-14 10:22:45Z glebius $");
33__FBSDID("$FreeBSD: head/sys/netinet/tcp_output.c 294535 2016-01-21 22:34:51Z glebius $");
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37#include "opt_ipsec.h"
38#include "opt_tcpdebug.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>

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

50#include <sys/socket.h>
51#include <sys/socketvar.h>
52#include <sys/sysctl.h>
53
54#include <net/if.h>
55#include <net/route.h>
56#include <net/vnet.h>
57
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37#include "opt_ipsec.h"
38#include "opt_tcpdebug.h"
39
40#include <sys/param.h>
41#include <sys/systm.h>

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

50#include <sys/socket.h>
51#include <sys/socketvar.h>
52#include <sys/sysctl.h>
53
54#include <net/if.h>
55#include <net/route.h>
56#include <net/vnet.h>
57
58#include <netinet/cc.h>
59#include <netinet/in.h>
60#include <netinet/in_kdtrace.h>
61#include <netinet/in_systm.h>
62#include <netinet/ip.h>
63#include <netinet/in_pcb.h>
64#include <netinet/ip_var.h>
65#include <netinet/ip_options.h>
66#ifdef INET6
67#include <netinet6/in6_pcb.h>
68#include <netinet/ip6.h>
69#include <netinet6/ip6_var.h>
70#endif
71#ifdef TCP_RFC7413
72#include <netinet/tcp_fastopen.h>
73#endif
58#include <netinet/in.h>
59#include <netinet/in_kdtrace.h>
60#include <netinet/in_systm.h>
61#include <netinet/ip.h>
62#include <netinet/in_pcb.h>
63#include <netinet/ip_var.h>
64#include <netinet/ip_options.h>
65#ifdef INET6
66#include <netinet6/in6_pcb.h>
67#include <netinet/ip6.h>
68#include <netinet6/ip6_var.h>
69#endif
70#ifdef TCP_RFC7413
71#include <netinet/tcp_fastopen.h>
72#endif
73#include <netinet/tcp.h>
74#define TCPOUTFLAGS
75#include <netinet/tcp_fsm.h>
76#include <netinet/tcp_seq.h>
77#include <netinet/tcp_timer.h>
78#include <netinet/tcp_var.h>
79#include <netinet/tcpip.h>
74#define TCPOUTFLAGS
75#include <netinet/tcp_fsm.h>
76#include <netinet/tcp_seq.h>
77#include <netinet/tcp_timer.h>
78#include <netinet/tcp_var.h>
79#include <netinet/tcpip.h>
80#include <netinet/tcp_cc.h>
80#ifdef TCPPCAP
81#include <netinet/tcp_pcap.h>
82#endif
83#ifdef TCPDEBUG
84#include <netinet/tcp_debug.h>
85#endif
86#ifdef TCP_OFFLOAD
87#include <netinet/tcp_offload.h>

--- 1722 unchanged lines hidden ---
81#ifdef TCPPCAP
82#include <netinet/tcp_pcap.h>
83#endif
84#ifdef TCPDEBUG
85#include <netinet/tcp_debug.h>
86#endif
87#ifdef TCP_OFFLOAD
88#include <netinet/tcp_offload.h>

--- 1722 unchanged lines hidden ---