summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/include/local.h2
-rw-r--r--source3/param/loadparm.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/local.h b/source3/include/local.h
index 22862a9a1f..d9e12e506b 100644
--- a/source3/include/local.h
+++ b/source3/include/local.h
@@ -159,6 +159,8 @@
#define LONG_CONNECT_TIMEOUT 30
#define SHORT_CONNECT_TIMEOUT 5
+/* the default netbios keepalive timeout */
+#define DEFAULT_KEEPALIVE 300
/* the directory to sit in when idle */
/* #define IDLE_DIR "/" */
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 27cbc8c8dd..52914ffd5d 100644
--- a/source3/param/loadparm.c
+++ b/source3/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;