mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
s3: Adding TCP_KEEPALIVE_THRESHOLD and TCP_KEEPALIVE_ABORT_THRESHOLD to the list of accepted socket settings.
These are both exclusive to Solaris/OpenSolaris. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Oct 7 00:26:39 UTC 2010 on sn-devel-104
This commit is contained in:
parent
1c9b856670
commit
fdad0328e4
@ -288,6 +288,12 @@ static const smb_socket_option socket_options[] = {
|
||||
#endif
|
||||
#ifdef TCP_QUICKACK
|
||||
{"TCP_QUICKACK", IPPROTO_TCP, TCP_QUICKACK, 0, OPT_BOOL},
|
||||
#endif
|
||||
#ifdef TCP_KEEPALIVE_THRESHOLD
|
||||
{"TCP_KEEPALIVE_THRESHOLD", IPPROTO_TCP, TCP_KEEPALIVE_THRESHOLD, 0, OPT_INT},
|
||||
#endif
|
||||
#ifdef TCP_KEEPALIVE_ABORT_THRESHOLD
|
||||
{"TCP_KEEPALIVE_ABORT_THRESHOLD", IPPROTO_TCP, TCP_KEEPALIVE_ABORT_THRESHOLD, 0, OPT_INT},
|
||||
#endif
|
||||
{NULL,0,0,0,0}};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user