Deleted Added
full compact
frag6.c (185088) frag6.c (185571)
1/*-
2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 * 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 * $KAME: frag6.c,v 1.33 2002/01/07 11:34:48 kjc Exp $
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 * 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 * $KAME: frag6.c,v 1.33 2002/01/07 11:34:48 kjc Exp $
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet6/frag6.c 185088 2008-11-19 09:39:34Z zec $");
33__FBSDID("$FreeBSD: head/sys/netinet6/frag6.c 185571 2008-12-02 21:37:28Z bz $");
34
35#include "opt_mac.h"
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/malloc.h>
40#include <sys/mbuf.h>
41#include <sys/domain.h>

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

52
53#include <netinet/in.h>
54#include <netinet/in_var.h>
55#include <netinet/ip6.h>
56#include <netinet6/ip6_var.h>
57#include <netinet/icmp6.h>
58#include <netinet/in_systm.h> /* for ECN definitions */
59#include <netinet/ip.h> /* for ECN definitions */
34
35#include "opt_mac.h"
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/malloc.h>
40#include <sys/mbuf.h>
41#include <sys/domain.h>

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

52
53#include <netinet/in.h>
54#include <netinet/in_var.h>
55#include <netinet/ip6.h>
56#include <netinet6/ip6_var.h>
57#include <netinet/icmp6.h>
58#include <netinet/in_systm.h> /* for ECN definitions */
59#include <netinet/ip.h> /* for ECN definitions */
60#include <netinet6/vinet6.h>
60
61#include <security/mac/mac_framework.h>
62
63/*
64 * Define it to get a correct behavior on per-interface statistics.
65 * You will need to perform an extra routing table lookup, per fragment,
66 * to do it. This may, or may not be, a performance hit.
67 */

--- 727 unchanged lines hidden ---
61
62#include <security/mac/mac_framework.h>
63
64/*
65 * Define it to get a correct behavior on per-interface statistics.
66 * You will need to perform an extra routing table lookup, per fragment,
67 * to do it. This may, or may not be, a performance hit.
68 */

--- 727 unchanged lines hidden ---