diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-04-10 08:51:00 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-04-10 08:51:00 +0000 |
commit | d22877dbabfd0a0409e7dc3605b2175e13617ccf (patch) | |
tree | ac7c543361875b00f49de36d3ddba8c1838a05a8 /sys/netinet/ip_ipsp.c | |
parent | b416547b90aa39044f0d3c8201e81e1dafd0ab5c (diff) |
Remove various external variable declaration from sources files and
move them to the corresponding header with an appropriate comment if
necessary.
ok guenther@
Diffstat (limited to 'sys/netinet/ip_ipsp.c')
-rw-r--r-- | sys/netinet/ip_ipsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index c1b14dc0fbd..ee95d666529 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.187 2013/04/09 08:35:38 mpi Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.188 2013/04/10 08:50:59 mpi Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr), @@ -64,6 +64,7 @@ #include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> +#include <netinet/ip_var.h> #endif /* INET */ #ifdef INET6 @@ -97,7 +98,6 @@ void tdb_soft_timeout(void *v); void tdb_soft_firstuse(void *v); int tdb_hash(u_int, u_int32_t, union sockaddr_union *, u_int8_t); -extern int encdebug; int ipsec_in_use = 0; u_int64_t ipsec_last_added = 0; |