aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_output.c
diff options
context:
space:
mode:
authorGeorge V. Neville-Neil <gnn@FreeBSD.org>2007-07-03 12:13:45 +0000
committerGeorge V. Neville-Neil <gnn@FreeBSD.org>2007-07-03 12:13:45 +0000
commitb2630c29344385f13f1ab2a973158c9a5afd71d4 (patch)
tree33a53f093fb66f940c2ed2dd7aab6c80eeaeafce /sys/netinet/tcp_output.c
parent25929d78514344227dcd7c77ad4b551390a5346e (diff)
downloadsrc-b2630c29344385f13f1ab2a973158c9a5afd71d4.tar.gz
src-b2630c29344385f13f1ab2a973158c9a5afd71d4.zip
Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSEC
option is now deprecated, as well as the KAME IPsec code. What was FAST_IPSEC is now IPSEC. Approved by: re Sponsored by: Secure Computing
Notes
Notes: svn path=/head/; revision=171167
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r--sys/netinet/tcp_output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index d80254add52c..6d552d9505f2 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -72,9 +72,9 @@
#include <netinet/tcp_debug.h>
#endif
-#ifdef FAST_IPSEC
+#ifdef IPSEC
#include <netipsec/ipsec.h>
-#endif /*FAST_IPSEC*/
+#endif /*IPSEC*/
#include <machine/in_cksum.h>
@@ -695,7 +695,7 @@ send:
offsetof(struct ipoption, ipopt_list);
else
ipoptlen = 0;
-#ifdef FAST_IPSEC
+#ifdef IPSEC
ipoptlen += ipsec_hdrsiz_tcp(tp);
#endif