diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-03-16 07:23:51 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-03-16 07:23:51 +0000 |
commit | 7bccd2c360a270df227c140aeecb943d8d187855 (patch) | |
tree | 46548971f0b27a1d2f4a45715bd83550d25ecfbb /source/param/loadparm.c | |
parent | 57aa1db47cda9c625cd1ef742fece14d14590590 (diff) | |
download | samba-7bccd2c360a270df227c140aeecb943d8d187855.tar.gz samba-7bccd2c360a270df227c140aeecb943d8d187855.tar.xz samba-7bccd2c360a270df227c140aeecb943d8d187855.zip |
changed the default "keepalive" value to 300 seconds.
This is more important now that oplocks are being used.
Diffstat (limited to 'source/param/loadparm.c')
-rw-r--r-- | source/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c index 27cbc8c8ddd..52914ffd5d4 100644 --- a/source/param/loadparm.c +++ b/source/param/loadparm.c @@ -89,7 +89,7 @@ extern pstring myname; #define LP_SNUM_OK(iService) (((iService) >= 0) && ((iService) < iNumServices) && iSERVICE(iService).valid) #define VALID(i) iSERVICE(i).valid -int keepalive=0; +int keepalive=DEFAULT_KEEPALIVE; extern BOOL use_getwd_cache; extern int extra_time_offset; |