diff options
author | Vineeth Pillai <Vineeth.Pillai@nexenta.com> | 2011-08-18 11:19:30 -0700 |
---|---|---|
committer | Vineeth Pillai <Vineeth.Pillai@nexenta.com> | 2011-08-18 11:19:30 -0700 |
commit | 8ed558133403bcd904d4d7f182337b09f9fbf225 (patch) | |
tree | a53d0a971bfcad42f411e394ebdd9766770e5c11 | |
parent | 3d0a255c417cf2e7b69e770de43f195b0eeffacb (diff) | |
download | illumos-joyent-8ed558133403bcd904d4d7f182337b09f9fbf225.tar.gz |
1361 Add support for socket options TCP_KEEPCNT, TCP_KEEPIDLE, TCP_KEEPINTVL (fix diff)
-rw-r--r-- | usr/src/uts/common/inet/tcp/tcp_opt_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/uts/common/inet/tcp/tcp_opt_data.c b/usr/src/uts/common/inet/tcp/tcp_opt_data.c index 960c3d8902..bcec93fcd3 100644 --- a/usr/src/uts/common/inet/tcp/tcp_opt_data.c +++ b/usr/src/uts/common/inet/tcp/tcp_opt_data.c @@ -718,7 +718,7 @@ tcp_opt_set(conn_t *connp, uint_t optset_context, int level, int name, */ case TCP_KEEPIDLE: *i1 *= 1000; - /* fall through */ + /* FALLTHRU */ case TCP_KEEPALIVE_THRESHOLD: if (checkonly) |