From 15cf7db4c94042a512864a07437689a19609acbe Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 17 Mar 1998 00:02:19 +0000 Subject: changed the default MAXSTATUS from 1000 to 100000 This number limits the number of simultaneous connections to the server. The 1000 limit is from a looong time ago when I couldn't imagine anyone wanting to have 1000 simultaneous clients. Now I hear that people are testing with such numbers. I wonder when I'll change it from 100k ? (This used to be commit bae865da2dca175a8fe25922aeee8e785521e19b) --- source3/include/local.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/local.h') diff --git a/source3/include/local.h b/source3/include/local.h index d9e12e506b..9a62aa7eb3 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -34,8 +34,8 @@ #define SHMEM_SIZE (1024*MAX_OPEN_FILES) #endif -/* the max number of connections that the smbstatus program will show */ -#define MAXSTATUS 1000 +/* the max number of simultanous connections to the server by all clients */ +#define MAXSTATUS 100000 /* max number of directories open at once */ /* note that with the new directory code this no longer requires a -- cgit