diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-12 16:30:39 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-12 16:30:39 +0200 |
commit | 057c9b11fca013205877e15dd851927a11aa058b (patch) | |
tree | 5d314274542db6b09ff325080cc21ed2b144def4 /tcpsrv.c | |
parent | b5ccdf06724d309b777d4dd38a455ed2ef0318a0 (diff) | |
download | rsyslog-057c9b11fca013205877e15dd851927a11aa058b.tar.gz rsyslog-057c9b11fca013205877e15dd851927a11aa058b.tar.xz rsyslog-057c9b11fca013205877e15dd851927a11aa058b.zip |
fixed a regression from past commit & more performance enhancement
a larger buffer is a cheap, yet useful, enhancement... ;)
Diffstat (limited to 'tcpsrv.c')
-rw-r--r-- | tcpsrv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -513,7 +513,7 @@ Run(tcpsrv_t *pThis) while(nfds && iTCPSess != -1) { CHKiRet(nssel.IsReady(pSel, pThis->pSessions[iTCPSess]->pStrm, NSDSEL_RD, &bIsReady, &nfds)); if(bIsReady) { - char buf[8*1024]; /* reception buffer - may hold a partial or multiple messages */ + char buf[64*1024]; /* reception buffer - may hold a partial or multiple messages */ dbgprintf("netstream %p with new data\n", pThis->pSessions[iTCPSess]->pStrm); /* Receive message */ |