diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-11-09 04:17:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-11-09 04:17:11 +0000 |
commit | ab521a11a1e994e99a043d3622c9692c04299bbd (patch) | |
tree | 7c9391d41d2a7401da401ec1af91f5634591712a /source3/param | |
parent | 8c62b28e0ef1e012ebb0713701916d82ffc7661e (diff) | |
download | samba-ab521a11a1e994e99a043d3622c9692c04299bbd.tar.gz samba-ab521a11a1e994e99a043d3622c9692c04299bbd.tar.bz2 samba-ab521a11a1e994e99a043d3622c9692c04299bbd.zip |
I talked to Dave Miller and he thinks that we should have TCP_NODELAY
on by default on OSes that support it, given the network IO pattern
that Samba uses. He doesn't think it will cause problems.
(This used to be commit 15016aa024854ca56ef20d1f29f54f9698a1911b)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index fcdc2ae68d..74f8df6cb7 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -804,6 +804,8 @@ static void init_globals(void) slprintf(s,sizeof(s)-1, "%d.%d", DEFAULT_MAJOR_VERSION, DEFAULT_MINOR_VERSION); string_set(&Globals.szAnnounceVersion,s); + pstrcpy(user_socket_options, DEFAULT_SOCKET_OPTIONS); + string_set(&Globals.szLogonDrive, ""); /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */ string_set(&Globals.szLogonHome, "\\\\%N\\%U"); |