Deleted Added
full compact
tcp_usrreq.c (294902) tcp_usrreq.c (294931)
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 294902 2016-01-27 07:34:00Z glebius $");
39__FBSDID("$FreeBSD: head/sys/netinet/tcp_usrreq.c 294931 2016-01-27 17:59:39Z 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>

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

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>
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>

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

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>
93#include <netinet/tcp_cc.h>
93#include <netinet/cc/cc.h>
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>

--- 2200 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>

--- 2200 unchanged lines hidden ---