diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2011-05-02 12:03:42 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2011-05-02 12:03:42 +0200 |
commit | d13ec67f9ab9c59a88952af6aec372fd082401ca (patch) | |
tree | f9060d60a97905e3e561f83fbba563f0757d5074 /tcpsrv.c | |
parent | e7deab65dcad38a613c749e44e36c6c795000867 (diff) | |
download | rsyslog-d13ec67f9ab9c59a88952af6aec372fd082401ca.tar.gz rsyslog-d13ec67f9ab9c59a88952af6aec372fd082401ca.tar.bz2 rsyslog-d13ec67f9ab9c59a88952af6aec372fd082401ca.zip |
slightly more informative errmsg when TCP connection is aborted
Diffstat (limited to 'tcpsrv.c')
-rw-r--r-- | tcpsrv.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -471,6 +471,7 @@ static rsRetVal Run(tcpsrv_t *pThis) { DEFiRet; + rsRetVal localRet; int nfds; int i; int iTCPSess; @@ -545,12 +546,13 @@ Run(tcpsrv_t *pThis) break; case RS_RET_OK: /* valid data received, process it! */ - if(tcps_sess.DataRcvd(pThis->pSessions[iTCPSess], buf, iRcvd) != RS_RET_OK) { + localRet = tcps_sess.DataRcvd(pThis->pSessions[iTCPSess], buf, iRcvd); + if(localRet != RS_RET_OK) { /* in this case, something went awfully wrong. * We are instructed to terminate the session. */ - errmsg.LogError(0, NO_ERRCODE, "Tearing down TCP Session %d - see " - "previous messages for reason(s)\n", iTCPSess); + errmsg.LogError(0, localRet, "Tearing down TCP Session %d - see " + "previous messages for reason(s)", iTCPSess); pThis->pOnErrClose(pThis->pSessions[iTCPSess]); tcps_sess.Destruct(&pThis->pSessions[iTCPSess]); } |