summaryrefslogtreecommitdiff
path: root/usr/src
diff options
context:
space:
mode:
authorPatrick Mooney <patrick.f.mooney@gmail.com>2015-10-01 19:56:57 +0000
committerRobert Mustacchi <rm@joyent.com>2016-06-10 08:51:33 -0700
commit995de72901a2c8b79bd3aea3df1617643d53ea89 (patch)
tree91b2bc60db82ca1366d0b00a9f4a5b107b3e132d /usr/src
parentb9709d3bf6aa3acb184b2dbcab09e7241a4edc82 (diff)
downloadillumos-joyent-995de72901a2c8b79bd3aea3df1617643d53ea89.tar.gz
7064 TCP_KEEPIDLE has needless 10sec minimum
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net> Reviewed by: Garrett D'Amore <garrett@damore.org> Approved by: Dan McDonald <danmcd@omniti.com>
Diffstat (limited to 'usr/src')
-rw-r--r--usr/src/uts/common/inet/tcp/tcp_tunables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/inet/tcp/tcp_tunables.c b/usr/src/uts/common/inet/tcp/tcp_tunables.c
index 582d47ea51..f4d6c71914 100644
--- a/usr/src/uts/common/inet/tcp/tcp_tunables.c
+++ b/usr/src/uts/common/inet/tcp/tcp_tunables.c
@@ -307,7 +307,7 @@ mod_prop_info_t tcp_propinfo_tbl[] = {
{ "_keepalive_interval", MOD_PROTO_TCP,
mod_set_uint32, mod_get_uint32,
- {10*SECONDS, 10*DAYS, 2*HOURS}, {2*HOURS} },
+ {1*SECONDS, 10*DAYS, 2*HOURS}, {2*HOURS} },
{ "_maxpsz_multiplier", MOD_PROTO_TCP,
mod_set_uint32, mod_get_uint32,