Deleted Added
full compact
pfkey_dump.c (169425) pfkey_dump.c (171135)
1/* $KAME: pfkey_dump.c,v 1.45 2003/09/08 10:14:56 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
1/* $KAME: pfkey_dump.c,v 1.45 2003/09/08 10:14:56 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/lib/libipsec/pfkey_dump.c 169425 2007-05-09 19:37:02Z gnn $");
33__FBSDID("$FreeBSD: head/lib/libipsec/pfkey_dump.c 171135 2007-07-01 12:08:08Z gnn $");
34
35#include <sys/types.h>
36#include <sys/param.h>
37#include <sys/socket.h>
34
35#include <sys/types.h>
36#include <sys/param.h>
37#include <sys/socket.h>
38#include <netinet6/ipsec.h>
38#include <netipsec/ipsec.h>
39#include <net/pfkeyv2.h>
39#include <net/pfkeyv2.h>
40#include <netkey/key_var.h>
41#include <netkey/key_debug.h>
40#include <netipsec/key_var.h>
41#include <netipsec/key_debug.h>
42
43#include <netinet/in.h>
42
43#include <netinet/in.h>
44#include <netinet6/ipsec.h>
45#include <arpa/inet.h>
46
47#include <stdlib.h>
48#include <unistd.h>
49#include <stdio.h>
50#include <string.h>
51#include <time.h>
52#include <netdb.h>

--- 583 unchanged lines hidden ---
44#include <arpa/inet.h>
45
46#include <stdlib.h>
47#include <unistd.h>
48#include <stdio.h>
49#include <string.h>
50#include <time.h>
51#include <netdb.h>

--- 583 unchanged lines hidden ---