summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-14 09:32:46 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-14 09:32:46 +0000
commit413aa120019af45ee8c8c51934cbf5df844a3bdd (patch)
tree4abd8856ef5fd89a40ac3f4214fbd5bc2cc158b4 /rsyslog.h
parentd9905a864c1adc4fe8a519ed8d65189645390e59 (diff)
downloadrsyslog-413aa120019af45ee8c8c51934cbf5df844a3bdd.tar.gz
rsyslog-413aa120019af45ee8c8c51934cbf5df844a3bdd.tar.xz
rsyslog-413aa120019af45ee8c8c51934cbf5df844a3bdd.zip
error handling and cleanup in imfile
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 8749718c..3826e18d 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -119,6 +119,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_ALREADY_STARTING = -2043, /**< something (a thread?) is already starting - not necessarily an error */
RS_RET_NO_MORE_THREADS = -2044, /**< no more threads available, not necessarily an error */
RS_RET_NO_FILEPREFIX = -2045, /**< file prefix is not specified where one is needed */
+ RS_RET_CONFIG_ERROR = -2046, /**< there is a problem with the user-provided config settigs */
+ RS_RET_OUT_OF_DESRIPTORS = -2047, /**< a descriptor table's space has been exhausted */
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 */