Increased default event text limit from 4k to 10k to accomodate debugging.

git-svn-id: http://yate.null.ro/svn/yate/trunk@1433 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2007-08-24 08:44:20 +00:00
parent 71a836c11e
commit 8ab89d1848
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ void Client::initWindows()
void Client::initClient()
{
s_eventLen = Engine::config().getIntValue("client","eventlen",4096);
s_eventLen = Engine::config().getIntValue("client","eventlen",10240);
if (s_eventLen > 65535)
s_eventLen = 65535;
else if (s_eventLen && (s_eventLen < 1024))