diff options
author | Jeremy Allison <jra@samba.org> | 2002-10-22 22:17:29 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-10-22 22:17:29 +0000 |
commit | 83219da3028a0341a9c7b2db38738ca30288686b (patch) | |
tree | 7be5f6ff2559bf70011648f5312636aff84b69ff /source3/include | |
parent | 6ba55f9b279e235752d9cefd37a027c700172c7d (diff) | |
download | samba-83219da3028a0341a9c7b2db38738ca30288686b.tar.gz samba-83219da3028a0341a9c7b2db38738ca30288686b.tar.bz2 samba-83219da3028a0341a9c7b2db38738ca30288686b.zip |
Fix for systems that allow more than 65536 open files per process.
Jeremy.
(This used to be commit 947a56ce00e552e8b8d2ed64435eabde6225f044)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/local.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index 2be9c1e101..20fa5ff52a 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -213,4 +213,7 @@ /* Max number of jobs per print queue. */ #define PRINT_MAX_JOBID 10000 +/* Max number of open RPC pipes. */ +#define MAX_OPEN_PIPES 2048 + #endif |