diff options
| -rw-r--r-- | rpc/rpc-transport/socket/src/socket.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/rpc/rpc-transport/socket/src/socket.c b/rpc/rpc-transport/socket/src/socket.c index c121210c4..4ae49815a 100644 --- a/rpc/rpc-transport/socket/src/socket.c +++ b/rpc/rpc-transport/socket/src/socket.c @@ -376,8 +376,13 @@ __socket_keepalive (int fd, int keepalive_intvl, int keepalive_idle)                  goto done;  #ifndef GF_LINUX_HOST_OS +#ifdef GF_SOLARIS_HOST_OS +        ret = setsockopt (fd, SOL_SOCKET, SO_KEEPALIVE, &keepalive_intvl, +                          sizeof (keepalive_intvl)); +#else          ret = setsockopt (fd, IPPROTO_TCP, TCP_KEEPALIVE, &keepalive_intvl,                            sizeof (keepalive_intvl)); +#endif          if (ret == -1)                  goto err;  #else  | 
