diff options
author | David S. Miller <davem@davemloft.net> | 2009-11-21 14:22:25 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-21 14:22:25 -0500 |
commit | e994b7c901ded7200b525a707c6da71f2cf6d4bb (patch) | |
tree | 9b84629905eb12ddeb014434361e6922fdbfeb46 /net/ipv4 | |
parent | 8964be4a9a5ca8cab1219bb046db2f6d1936227c (diff) |
tcp: Don't make syn cookies initial setting depend on CONFIG_SYSCTL
That's extremely non-intuitive, noticed by William Allen Simpson.
And let's make the default be on, it's been suggested by a lot of
people so we'll give it a try.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/tcp_minisocks.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index 4be22280e6b3..ab32c181f749 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c | |||
@@ -26,13 +26,7 @@ | |||
26 | #include <net/inet_common.h> | 26 | #include <net/inet_common.h> |
27 | #include <net/xfrm.h> | 27 | #include <net/xfrm.h> |
28 | 28 | ||
29 | #ifdef CONFIG_SYSCTL | 29 | int sysctl_tcp_syncookies __read_mostly = 1; |
30 | #define SYNC_INIT 0 /* let the user enable it */ | ||
31 | #else | ||
32 | #define SYNC_INIT 1 | ||
33 | #endif | ||
34 | |||
35 | int sysctl_tcp_syncookies __read_mostly = SYNC_INIT; | ||
36 | EXPORT_SYMBOL(sysctl_tcp_syncookies); | 30 | EXPORT_SYMBOL(sysctl_tcp_syncookies); |
37 | 31 | ||
38 | int sysctl_tcp_abort_on_overflow __read_mostly; | 32 | int sysctl_tcp_abort_on_overflow __read_mostly; |