Deleted Added
full compact
tcp_input.c (220156) tcp_input.c (220560)
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994, 1995
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2007-2008,2010
5 * Swinburne University of Technology, Melbourne, Australia.
6 * Copyright (c) 2009-2010 Lawrence Stewart <lstewart@freebsd.org>
7 * Copyright (c) 2010 The FreeBSD Foundation
8 * All rights reserved.
9 *
10 * Portions of this software were developed at the Centre for Advanced Internet
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994, 1995
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2007-2008,2010
5 * Swinburne University of Technology, Melbourne, Australia.
6 * Copyright (c) 2009-2010 Lawrence Stewart <lstewart@freebsd.org>
7 * Copyright (c) 2010 The FreeBSD Foundation
8 * All rights reserved.
9 *
10 * Portions of this software were developed at the Centre for Advanced Internet
11 * Architectures, Swinburne University, by Lawrence Stewart, James Healy and
12 * David Hayes, made possible in part by a grant from the Cisco University
13 * Research Program Fund at Community Foundation Silicon Valley.
11 * Architectures, Swinburne University of Technology, by Lawrence Stewart,
12 * James Healy and David Hayes, made possible in part by a grant from the Cisco
13 * University Research Program Fund at Community Foundation Silicon Valley.
14 *
15 * Portions of this software were developed at the Centre for Advanced
16 * Internet Architectures, Swinburne University of Technology, Melbourne,
17 * Australia by David Hayes under sponsorship from the FreeBSD Foundation.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:

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

39 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 * SUCH DAMAGE.
42 *
43 * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
44 */
45
46#include <sys/cdefs.h>
14 *
15 * Portions of this software were developed at the Centre for Advanced
16 * Internet Architectures, Swinburne University of Technology, Melbourne,
17 * Australia by David Hayes under sponsorship from the FreeBSD Foundation.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:

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

39 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
40 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 * SUCH DAMAGE.
42 *
43 * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
44 */
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/sys/netinet/tcp_input.c 220156 2011-03-30 12:35:39Z jhb $");
47__FBSDID("$FreeBSD: head/sys/netinet/tcp_input.c 220560 2011-04-12 08:13:18Z lstewart $");
48
49#include "opt_ipfw.h" /* for ipfw_fwd */
50#include "opt_inet.h"
51#include "opt_inet6.h"
52#include "opt_ipsec.h"
53#include "opt_tcpdebug.h"
54
55#include <sys/param.h>

--- 3443 unchanged lines hidden ---
48
49#include "opt_ipfw.h" /* for ipfw_fwd */
50#include "opt_inet.h"
51#include "opt_inet6.h"
52#include "opt_ipsec.h"
53#include "opt_tcpdebug.h"
54
55#include <sys/param.h>

--- 3443 unchanged lines hidden ---