Deleted Added
full compact
ip_fw_log.c (201527) ip_fw_log.c (201732)
1/*-
2 * Copyright (c) 2002-2009 Luigi Rizzo, Universita` di Pisa
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 */
25
26#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2002-2009 Luigi Rizzo, Universita` di Pisa
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 */
25
26#include <sys/cdefs.h>
27__FBSDID("$FreeBSD: head/sys/netinet/ipfw/ip_fw_log.c 201527 2010-01-04 19:01:22Z luigi $");
27__FBSDID("$FreeBSD: head/sys/netinet/ipfw/ip_fw_log.c 201732 2010-01-07 10:08:05Z luigi $");
28
29/*
30 * Logging support for ipfw
31 */
32
33#if !defined(KLD_MODULE)
34#include "opt_ipfw.h"
35#include "opt_ipdivert.h"

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

53#include <net/if.h>
54#include <net/vnet.h>
55#include <net/if_types.h> /* for IFT_ETHER */
56#include <net/bpf.h> /* for BPF */
57
58#include <netinet/in.h>
59#include <netinet/ip.h>
60#include <netinet/ip_icmp.h>
28
29/*
30 * Logging support for ipfw
31 */
32
33#if !defined(KLD_MODULE)
34#include "opt_ipfw.h"
35#include "opt_ipdivert.h"

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

53#include <net/if.h>
54#include <net/vnet.h>
55#include <net/if_types.h> /* for IFT_ETHER */
56#include <net/bpf.h> /* for BPF */
57
58#include <netinet/in.h>
59#include <netinet/ip.h>
60#include <netinet/ip_icmp.h>
61#include <netinet/ip_var.h>
61#include <netinet/ip_fw.h>
62#include <netinet/ipfw/ip_fw_private.h>
63#include <netinet/tcp_var.h>
64#include <netinet/udp.h>
65
66#include <netinet/ip6.h>
67#include <netinet/icmp6.h>
68#ifdef INET6

--- 364 unchanged lines hidden ---
62#include <netinet/ip_fw.h>
63#include <netinet/ipfw/ip_fw_private.h>
64#include <netinet/tcp_var.h>
65#include <netinet/udp.h>
66
67#include <netinet/ip6.h>
68#include <netinet/icmp6.h>
69#ifdef INET6

--- 364 unchanged lines hidden ---