From aeca69ded51d6233029432f2819670cdedc399fa Mon Sep 17 00:00:00 2001 From: gnn Date: Tue, 3 Jul 2007 12:13:45 +0000 Subject: 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 --- sys/netinet/tcp_input.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/netinet/tcp_input.c') diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 9d31c79..b09b5c4 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -82,10 +82,10 @@ #include #endif /* TCPDEBUG */ -#ifdef FAST_IPSEC +#ifdef IPSEC #include #include -#endif /*FAST_IPSEC*/ +#endif /*IPSEC*/ #include @@ -445,7 +445,7 @@ findpcb: m->m_pkthdr.rcvif); } -#ifdef FAST_IPSEC +#ifdef IPSEC #ifdef INET6 if (isipv6 && inp != NULL && ipsec6_in_reject(m, inp)) { ipsec6stat.in_polvio++; @@ -456,7 +456,7 @@ findpcb: ipsec4stat.in_polvio++; goto dropunlock; } -#endif /* FAST_IPSEC */ +#endif /* IPSEC */ /* * If the INPCB does not exist then all data in the incoming -- cgit v1.1