Deleted Added
full compact
tcp_reass.c (185088) tcp_reass.c (185571)
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 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

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

--- 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_input.c 8.12 (Berkeley) 5/24/95
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet/tcp_reass.c 185088 2008-11-19 09:39:34Z zec $");
33__FBSDID("$FreeBSD: head/sys/netinet/tcp_reass.c 185571 2008-12-02 21:37:28Z bz $");
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37#include "opt_tcpdebug.h"
38
39#include <sys/param.h>
40#include <sys/kernel.h>
41#include <sys/malloc.h>

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

68#include <netinet/tcp_seq.h>
69#include <netinet/tcp_timer.h>
70#include <netinet/tcp_var.h>
71#include <netinet6/tcp6_var.h>
72#include <netinet/tcpip.h>
73#ifdef TCPDEBUG
74#include <netinet/tcp_debug.h>
75#endif /* TCPDEBUG */
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37#include "opt_tcpdebug.h"
38
39#include <sys/param.h>
40#include <sys/kernel.h>
41#include <sys/malloc.h>

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

68#include <netinet/tcp_seq.h>
69#include <netinet/tcp_timer.h>
70#include <netinet/tcp_var.h>
71#include <netinet6/tcp6_var.h>
72#include <netinet/tcpip.h>
73#ifdef TCPDEBUG
74#include <netinet/tcp_debug.h>
75#endif /* TCPDEBUG */
76#include <netinet/vinet.h>
76
77#ifdef VIMAGE_GLOBALS
78static int tcp_reass_maxseg;
79int tcp_reass_qsize;
80static int tcp_reass_maxqlen;
81static int tcp_reass_overflows;
82#endif
83

--- 214 unchanged lines hidden ---
77
78#ifdef VIMAGE_GLOBALS
79static int tcp_reass_maxseg;
80int tcp_reass_qsize;
81static int tcp_reass_maxqlen;
82static int tcp_reass_overflows;
83#endif
84

--- 214 unchanged lines hidden ---