mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Increase some limits
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22170 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4e0b7bebcb
commit
996f822624
3 changed files with 11 additions and 2 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-12-15 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSMessagePort.m:
|
||||
* Source/NSSocketPort.m:
|
||||
Increase maximum supported message size from 10MB to 32MB in
|
||||
recognition of the fact that everything is faster/bigger nowadays
|
||||
and people might actually want to send single messages with
|
||||
that much data in them.
|
||||
|
||||
2005-12-13 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/GSXML.m: Fix error parsing date/time in xmlrpc
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
/*
|
||||
* Largest chunk of data possible in DO
|
||||
*/
|
||||
static gsu32 maxDataLength = 10 * 1024 * 1024;
|
||||
static gsu32 maxDataLength = 32 * 1024 * 1024;
|
||||
|
||||
#if 0
|
||||
#define M_LOCK(X) {NSDebugMLLog(@"NSMessagePort",@"lock %@",X); [X lock];}
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
/*
|
||||
* Largest chunk of data possible in DO
|
||||
*/
|
||||
static gsu32 maxDataLength = 10 * 1024 * 1024;
|
||||
static gsu32 maxDataLength = 32 * 1024 * 1024;
|
||||
|
||||
#if 0
|
||||
#define M_LOCK(X) {NSDebugMLLog(@"GSTcpHandleLock",@"lock %@ in %@",X,[NSThread currentThread]); [X lock];}
|
||||
|
|
Loading…
Reference in a new issue