diff options
author | Dan McDonald <danmcd@omniti.com> | 2014-07-18 10:42:56 -0400 |
---|---|---|
committer | Dan McDonald <danmcd@omniti.com> | 2014-07-18 18:59:38 -0400 |
commit | 6400a6be1817a40f3dbefdd3df7b7d87bcebef30 (patch) | |
tree | 296be017cc807024cd7db369368b0f917c971f06 /usr/src/uts/common/inet/tcp/tcp_tunables.c | |
parent | dcb12fb726d8dd4ff80ea255dc3f53b5692c75e5 (diff) | |
download | illumos-joyent-6400a6be1817a40f3dbefdd3df7b7d87bcebef30.tar.gz |
474 tcp_strong_iss should be 2 instead of 1
Reviewed by: Sebastien Roy <sebastien.roy@delphix.com>
Reviewed by: Saso Kiselkov <skiselkov.ml@gmail.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src/uts/common/inet/tcp/tcp_tunables.c')
-rw-r--r-- | usr/src/uts/common/inet/tcp/tcp_tunables.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr/src/uts/common/inet/tcp/tcp_tunables.c b/usr/src/uts/common/inet/tcp/tcp_tunables.c index 1fad61d79b..be75f1f663 100644 --- a/usr/src/uts/common/inet/tcp/tcp_tunables.c +++ b/usr/src/uts/common/inet/tcp/tcp_tunables.c @@ -397,12 +397,9 @@ mod_prop_info_t tcp_propinfo_tbl[] = { mod_set_uint32, mod_get_uint32, {8192, ULP_MAX_BUF, 1024*1024}, {1024*1024} }, - /* - * Question: What default value should I set for tcp_strong_iss? - */ { "_strong_iss", MOD_PROTO_TCP, mod_set_uint32, mod_get_uint32, - {0, 2, 1}, {1} }, + {0, 2, 2}, {2} }, { "_rtt_updates", MOD_PROTO_TCP, mod_set_uint32, mod_get_uint32, |