diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/local.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index 45767ad1c1..de54ea5886 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -66,7 +66,25 @@ #ifndef MAX_OPEN_FILES #define MAX_OPEN_FILES 10000 #endif - + +/* + * Fudgefactor required for open tdb's, etc. + */ + +#ifndef MAX_OPEN_FUDGEFACTOR +#define MAX_OPEN_FUDGEFACTOR 20 +#endif + +/* + * Minimum number of open files needed for Windows7 to + * work correctly. A little conservative but better that + * than run out of fd's. + */ + +#ifndef MIN_OPEN_FILES_WINDOWS +#define MIN_OPEN_FILES_WINDOWS 1050 +#endif + #define WORDMAX 0xFFFF /* the maximum password length before we declare a likely attack */ |