summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshin <shin@FreeBSD.org>1999-11-23 05:42:36 +0000
committershin <shin@FreeBSD.org>1999-11-23 05:42:36 +0000
commit8a8ecd0abc499a9487cc5b0388a47f40da54f36a (patch)
tree5095f1abaf1eb1cba43ffae92731b03a6faa1d9a
parente7cc7b5662d6669a4daa90c18c68541d9201b128 (diff)
downloadFreeBSD-src-8a8ecd0abc499a9487cc5b0388a47f40da54f36a.zip
FreeBSD-src-8a8ecd0abc499a9487cc5b0388a47f40da54f36a.tar.gz
Removed IPSEC and IPV6FIREWALL because they are not ready yet.
-rw-r--r--sys/conf/options2
-rw-r--r--sys/netinet6/icmp6.c1
-rw-r--r--sys/netinet6/in6_pcb.c1
-rw-r--r--sys/netinet6/in6_proto.c1
-rw-r--r--sys/netinet6/ip6_forward.c2
-rw-r--r--sys/netinet6/ip6_input.c2
-rw-r--r--sys/netinet6/ip6_output.c2
-rw-r--r--sys/netinet6/mld6.c1
-rw-r--r--sys/netinet6/nd6_nbr.c1
-rw-r--r--sys/netinet6/raw_ip6.c1
10 files changed, 0 insertions, 14 deletions
diff --git a/sys/conf/options b/sys/conf/options
index 31d603f..05af43c 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -216,7 +216,6 @@ BRIDGE opt_bdg.h
MROUTING opt_mrouting.h
INET opt_inet.h
INET6 opt_inet.h
-IPSEC opt_ipsec.h
IPDIVERT
DUMMYNET opt_ipdn.h
IPFILTER_LKM opt_ipfilter.h
@@ -225,7 +224,6 @@ IPFIREWALL_VERBOSE opt_ipfw.h
IPFIREWALL_VERBOSE_LIMIT opt_ipfw.h
IPFIREWALL_DEFAULT_TO_ACCEPT opt_ipfw.h
IPFIREWALL_FORWARD opt_ipfw.h
-IPV6FIREWALL opt_ip6fw.h
IPSTEALTH
IPX opt_ipx.h
IPXIP opt_ipx.h
diff --git a/sys/netinet6/icmp6.c b/sys/netinet6/icmp6.c
index e06c6ef..425a5d5 100644
--- a/sys/netinet6/icmp6.c
+++ b/sys/netinet6/icmp6.c
@@ -65,7 +65,6 @@
*/
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include "opt_key.h"
#include <sys/param.h>
diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c
index 884410a..8aee5b3 100644
--- a/sys/netinet6/in6_pcb.c
+++ b/sys/netinet6/in6_pcb.c
@@ -66,7 +66,6 @@
*/
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include "opt_key.h"
#include <sys/param.h>
diff --git a/sys/netinet6/in6_proto.c b/sys/netinet6/in6_proto.c
index 8189d01..1d1c7a3 100644
--- a/sys/netinet6/in6_proto.c
+++ b/sys/netinet6/in6_proto.c
@@ -65,7 +65,6 @@
*/
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include <sys/param.h>
#include <sys/socket.h>
diff --git a/sys/netinet6/ip6_forward.c b/sys/netinet6/ip6_forward.c
index 0a4745b..a50ba6c 100644
--- a/sys/netinet6/ip6_forward.c
+++ b/sys/netinet6/ip6_forward.c
@@ -29,9 +29,7 @@
* $FreeBSD$
*/
-#include "opt_ip6fw.h"
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include "opt_key.h"
#include <sys/param.h>
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c
index dc12b0f..097d5a0 100644
--- a/sys/netinet6/ip6_input.c
+++ b/sys/netinet6/ip6_input.c
@@ -64,9 +64,7 @@
* @(#)ip_input.c 8.2 (Berkeley) 1/4/94
*/
-#include "opt_ip6fw.h"
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c
index c452ad3..de85510 100644
--- a/sys/netinet6/ip6_output.c
+++ b/sys/netinet6/ip6_output.c
@@ -64,9 +64,7 @@
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
*/
-#include "opt_ip6fw.h"
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include "opt_key.h"
#include <sys/param.h>
diff --git a/sys/netinet6/mld6.c b/sys/netinet6/mld6.c
index 8c5824a..43cb9b7 100644
--- a/sys/netinet6/mld6.c
+++ b/sys/netinet6/mld6.c
@@ -69,7 +69,6 @@
*/
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/netinet6/nd6_nbr.c b/sys/netinet6/nd6_nbr.c
index 2836d48..de09176 100644
--- a/sys/netinet6/nd6_nbr.c
+++ b/sys/netinet6/nd6_nbr.c
@@ -30,7 +30,6 @@
*/
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c
index 5698f1c3..c54874e 100644
--- a/sys/netinet6/raw_ip6.c
+++ b/sys/netinet6/raw_ip6.c
@@ -65,7 +65,6 @@
*/
#include "opt_inet.h"
-#include "opt_ipsec.h"
#include <stddef.h>
OpenPOWER on IntegriCloud