summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-08-10 14:51:43 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2010-08-10 14:51:43 +0200
commit55256ac96815d6e13fc9df7206d50ef7dcaca4fe (patch)
treeb2a6a8be01f33f53c12f937aefc88173b581a952 /runtime
parent318adf58de35d7b8c6ca891b93c351220628586b (diff)
downloadrsyslog-55256ac96815d6e13fc9df7206d50ef7dcaca4fe.tar.gz
rsyslog-55256ac96815d6e13fc9df7206d50ef7dcaca4fe.tar.xz
rsyslog-55256ac96815d6e13fc9df7206d50ef7dcaca4fe.zip
added imptcp
imptcp is a simplified, Linux-specific and potentielly fast syslog plain tcp input plugin (NOT supporting TLS!)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/rsyslog.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h
index 8979893a..907b9c1a 100644
--- a/runtime/rsyslog.h
+++ b/runtime/rsyslog.h
@@ -360,6 +360,10 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_VAR_NOT_FOUND = -2142, /**< variable not found */
RS_RET_EMPTY_MSG = -2143, /**< provided (raw) MSG is empty */
RS_RET_PEER_CLOSED_CONN = -2144, /**< remote peer closed connection (information, no error) */
+ RS_RET_NO_LSTN_DEFINED = -2172, /**< no listener defined (e.g. inside an input module) */
+ RS_RET_EPOLL_CR_FAILED = -2173, /**< epoll_create() failed */
+ RS_RET_EPOLL_CTL_FAILED = -2174, /**< epoll_ctl() failed */
+ RS_RET_INTERNAL_ERROR = -2175, /**< rsyslogd internal error, unexpected code path reached */
/* RainerScript error messages (range 1000.. 1999) */
RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */