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

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
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
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1986, 1988, 1993
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

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
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
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/netinet/ip_ipsec.c 183550 2008-10-02 15:37:58Z zec $");
31__FBSDID("$FreeBSD: head/sys/netinet/ip_ipsec.c 185571 2008-12-02 21:37:28Z bz $");
32
33#include "opt_ipsec.h"
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/errno.h>
38#include <sys/kernel.h>
39#include <sys/malloc.h>

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

50#include <netinet/in.h>
51#include <netinet/in_systm.h>
52#include <netinet/in_var.h>
53#include <netinet/ip.h>
54#include <netinet/in_pcb.h>
55#include <netinet/ip_var.h>
56#include <netinet/ip_options.h>
57#include <netinet/ip_ipsec.h>
32
33#include "opt_ipsec.h"
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/errno.h>
38#include <sys/kernel.h>
39#include <sys/malloc.h>

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

50#include <netinet/in.h>
51#include <netinet/in_systm.h>
52#include <netinet/in_var.h>
53#include <netinet/ip.h>
54#include <netinet/in_pcb.h>
55#include <netinet/ip_var.h>
56#include <netinet/ip_options.h>
57#include <netinet/ip_ipsec.h>
58#include <netinet/vinet.h>
58
59#include <machine/in_cksum.h>
60
61#ifdef IPSEC
62#include <netipsec/ipsec.h>
63#include <netipsec/xform.h>
64#include <netipsec/key.h>
65#endif /*IPSEC*/

--- 337 unchanged lines hidden ---
59
60#include <machine/in_cksum.h>
61
62#ifdef IPSEC
63#include <netipsec/ipsec.h>
64#include <netipsec/xform.h>
65#include <netipsec/key.h>
66#endif /*IPSEC*/

--- 337 unchanged lines hidden ---