diff options
author | 2001-06-08 02:56:47 +0000 | |
---|---|---|
committer | 2001-06-08 02:56:47 +0000 | |
commit | 2888a4440d0b0859197618111b04436e52b75e95 (patch) | |
tree | 01f0eaffe309edc3857aad41d4b45db2ab39f225 | |
parent | Fork out some of the code in pfkeyv2.c to pfkeyv2_convert.c, to make (diff) | |
download | wireguard-openbsd-2888a4440d0b0859197618111b04436e52b75e95.tar.xz wireguard-openbsd-2888a4440d0b0859197618111b04436e52b75e95.zip |
Trim some unnecessary includes.
-rw-r--r-- | sys/net/pfkeyv2.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/net/pfkeyv2.c b/sys/net/pfkeyv2.c index 829812bae68..a01a59bbd0e 100644 --- a/sys/net/pfkeyv2.c +++ b/sys/net/pfkeyv2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkeyv2.c,v 1.66 2001/06/08 02:53:49 angelos Exp $ */ +/* $OpenBSD: pfkeyv2.c,v 1.67 2001/06/08 02:56:47 angelos Exp $ */ /* * @(#)COPYRIGHT 1.1 (NRL) 17 January 1995 @@ -74,18 +74,13 @@ #include <sys/systm.h> #include <sys/mbuf.h> #include <sys/kernel.h> -#include <sys/malloc.h> -#include <sys/socketvar.h> #include <sys/proc.h> #include <net/route.h> -#include <netinet/in.h> #include <netinet/ip_ipsp.h> #include <net/pfkeyv2.h> #include <netinet/ip_ah.h> #include <netinet/ip_esp.h> #include <crypto/blf.h> -#include <crypto/crypto.h> -#include <crypto/xform.h> #define PFKEYV2_PROTOCOL 2 #define GETSPI_TRIES 10 |