Deleted Added
full compact
fastpath.c (300042) fastpath.c (301717)
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 * Copyright (c) 2010-2011 Juniper Networks, Inc.

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

47 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 * SUCH DAMAGE.
50 *
51 * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
52 */
53
54#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 * 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 * Copyright (c) 2010-2011 Juniper Networks, Inc.

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

47 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 * SUCH DAMAGE.
50 *
51 * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
52 */
53
54#include <sys/cdefs.h>
55__FBSDID("$FreeBSD: head/sys/netinet/tcp_stacks/fastpath.c 300042 2016-05-17 09:53:22Z rrs $");
55__FBSDID("$FreeBSD: head/sys/netinet/tcp_stacks/fastpath.c 301717 2016-06-09 05:48:34Z ae $");
56
56
57#include "opt_ipfw.h" /* for ipfw_fwd */
58#include "opt_inet.h"
59#include "opt_inet6.h"
60#include "opt_ipsec.h"
61#include "opt_tcpdebug.h"
62
63#include <sys/param.h>
64#include <sys/module.h>
65#include <sys/kernel.h>

--- 2372 unchanged lines hidden ---
57#include "opt_inet.h"
58#include "opt_inet6.h"
59#include "opt_ipsec.h"
60#include "opt_tcpdebug.h"
61
62#include <sys/param.h>
63#include <sys/module.h>
64#include <sys/kernel.h>

--- 2372 unchanged lines hidden ---