summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-14 15:24:29 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-14 15:24:29 +0000
commit16eba18af23dad76e717ae9fde5dfea31ce6f2aa (patch)
tree411c7f7f52d2040f0df6c41d60f2bdf095d8dd4d /rsyslog.h
parent51ec17e88826559b493d7a57dd9cb6ea547ed3f3 (diff)
downloadrsyslog-16eba18af23dad76e717ae9fde5dfea31ce6f2aa.tar.gz
rsyslog-16eba18af23dad76e717ae9fde5dfea31ce6f2aa.tar.xz
rsyslog-16eba18af23dad76e717ae9fde5dfea31ce6f2aa.zip
- implemented $MainMsgQueueDiscardMark == 0 --> disable Discard logic
- implemented $MainMsgQueueSize == 0 --> no limit on queue size
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 3e5c0397..a10cdf86 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -110,6 +110,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_NO_FILE_ACCESS = -2039, /**< covers EACCES error on file open() */
RS_RET_FILE_NOT_FOUND = -2040, /**< file not found */
RS_RET_TIMED_OUT = -2041, /**< timeout occured (not necessarily an error) */
+ RS_RET_QSIZE_ZERO = -2042, /**< queue size is zero where this is not supported */
RS_RET_OK_DELETE_LISTENTRY = 1, /**< operation successful, but callee requested the deletion of an entry (special state) */
RS_RET_TERMINATE_NOW = 2, /**< operation successful, function is requested to terminate (mostly used with threads) */
RS_RET_NO_RUN = 3, /**< operation successful, but function does not like to be executed */