diff options
| author | Jeff Roberson <jeff@FreeBSD.org> | 2003-10-04 17:37:51 +0000 |
|---|---|---|
| committer | Jeff Roberson <jeff@FreeBSD.org> | 2003-10-04 17:37:51 +0000 |
| commit | 3c92540393b3ed074355fe60e7bbf5c3c25d9d96 (patch) | |
| tree | 8b11b7407b946a19c48b489b8dc61ecdd3ea59b4 /sys | |
| parent | 80cd3a08049a2ac79900713686bc7c8e31b8e881 (diff) | |
- Set the sopt_dir member of the sockopt structure, otherwise, this parameter
will not actually be set even though we're calling sosetopt. sosetopt
calls down to a single ctloutput function if the name or level is
implemented by a specific protocol.
Submitted by: pete@isilon.com
Notes
svn path=/head/; revision=120753
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/nfsserver/nfs_syscalls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/nfsserver/nfs_syscalls.c b/sys/nfsserver/nfs_syscalls.c index 87880897d84e..f4d0c76cf804 100644 --- a/sys/nfsserver/nfs_syscalls.c +++ b/sys/nfsserver/nfs_syscalls.c @@ -235,6 +235,7 @@ nfssvc_addsock(struct file *fp, struct sockaddr *mynam, struct thread *td) int val; bzero(&sopt, sizeof sopt); + sopt.sopt_dir = SOPT_SET; sopt.sopt_level = SOL_SOCKET; sopt.sopt_name = SO_KEEPALIVE; sopt.sopt_val = &val; @@ -247,6 +248,7 @@ nfssvc_addsock(struct file *fp, struct sockaddr *mynam, struct thread *td) int val; bzero(&sopt, sizeof sopt); + sopt.sopt_dir = SOPT_SET; sopt.sopt_level = IPPROTO_TCP; sopt.sopt_name = TCP_NODELAY; sopt.sopt_val = &val; |
