Deleted Added
full compact
pfkey.c (164687) pfkey.c (171135)
1/* $FreeBSD: head/usr.bin/netstat/pfkey.c 164687 2006-11-27 19:50:50Z yar $ */
1/* $FreeBSD: head/usr.bin/netstat/pfkey.c 171135 2007-07-01 12:08:08Z gnn $ */
2/* $NetBSD: inet.c,v 1.35.2.1 1999/04/29 14:57:08 perry Exp $ */
3/* $KAME: ipsec.c,v 1.25 2001/03/12 09:04:39 itojun Exp $ */
4
5/*
6 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

65 */
66
67#include <sys/cdefs.h>
68#ifndef lint
69/*
70static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95";
71*/
72static const char rcsid[] =
2/* $NetBSD: inet.c,v 1.35.2.1 1999/04/29 14:57:08 perry Exp $ */
3/* $KAME: ipsec.c,v 1.25 2001/03/12 09:04:39 itojun Exp $ */
4
5/*
6 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

65 */
66
67#include <sys/cdefs.h>
68#ifndef lint
69/*
70static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95";
71*/
72static const char rcsid[] =
73 "$FreeBSD: head/usr.bin/netstat/pfkey.c 164687 2006-11-27 19:50:50Z yar $";
73 "$FreeBSD: head/usr.bin/netstat/pfkey.c 171135 2007-07-01 12:08:08Z gnn $";
74#endif /* not lint */
75
76#include <sys/param.h>
77#include <sys/queue.h>
78#include <sys/socket.h>
79
80#include <netinet/in.h>
81
74#endif /* not lint */
75
76#include <sys/param.h>
77#include <sys/queue.h>
78#include <sys/socket.h>
79
80#include <netinet/in.h>
81
82#if defined(IPSEC) && !defined(FAST_IPSEC)
83#include <netkey/keysock.h>
84#endif
85
86#ifdef FAST_IPSEC
82#ifdef IPSEC
87#include <netipsec/keysock.h>
88#endif
89
90#include <stdint.h>
91#include <stdio.h>
92#include <string.h>
93#include <unistd.h>
94#include "netstat.h"

--- 91 unchanged lines hidden ---
83#include <netipsec/keysock.h>
84#endif
85
86#include <stdint.h>
87#include <stdio.h>
88#include <string.h>
89#include <unistd.h>
90#include "netstat.h"

--- 91 unchanged lines hidden ---