summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-05-19 14:09:51 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-05-19 14:09:51 +0200
commit9daaa20683ac208106bce3f4d8742b4ed9d4f833 (patch)
treeb3121cfc03dd6e213f28cad6924d32eca6a7d8f7
parent809ed1768b83bc0c5392f943f4820523494e8285 (diff)
downloadrsyslog-9daaa20683ac208106bce3f4d8742b4ed9d4f833.tar.gz
rsyslog-9daaa20683ac208106bce3f4d8742b4ed9d4f833.tar.bz2
rsyslog-9daaa20683ac208106bce3f4d8742b4ed9d4f833.zip
hardcoded: tcp input data is non-delayable
-rw-r--r--tcps_sess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcps_sess.c b/tcps_sess.c
index ea9032b3..653b316d 100644
--- a/tcps_sess.c
+++ b/tcps_sess.c
@@ -252,7 +252,7 @@ defaultDoSubmitMessage(tcps_sess_t *pThis, struct syslogTime *stTime, time_t ttG
CHKiRet(msgConstructWithTime(&pMsg, stTime, ttGenTime));
MsgSetRawMsg(pMsg, (char*)pThis->pMsg, pThis->iMsg);
MsgSetInputName(pMsg, pThis->pLstnInfo->pInputName);
- MsgSetFlowControlType(pMsg, eFLOWCTL_LIGHT_DELAY);
+ MsgSetFlowControlType(pMsg, eFLOWCTL_NO_DELAY);
pMsg->msgFlags = NEEDS_PARSING | PARSE_HOSTNAME;
pMsg->bParseHOSTNAME = 1;
MsgSetRcvFrom(pMsg, pThis->fromHost);