summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-08-01 07:46:36 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-08-01 07:46:36 +0000
commit2b51194f651add73f7caf53c074a18fa44059662 (patch)
tree4160d611d1d37a0fa357bc6525000d2c13e42917 /rsyslog.h
parent2a712d230a2589cabdd967956ede8c4f6fb59204 (diff)
downloadrsyslog-2b51194f651add73f7caf53c074a18fa44059662.tar.gz
rsyslog-2b51194f651add73f7caf53c074a18fa44059662.tar.xz
rsyslog-2b51194f651add73f7caf53c074a18fa44059662.zip
- some more code cleanup
- enhanced cfsysline interface to disallow chaining of command handlers
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 b781383c..c4165bac 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -66,6 +66,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_VAL_OUT_OF_RANGE = -2012, /**< value out of range */
RS_RET_FOPEN_FAILURE = -2013, /**< failure during fopen, for example file not found - see errno */
RS_RET_END_OF_LINKEDLIST = -2014, /**< end of linked list, not an error, but a status */
+ RS_RET_CHAIN_NOT_PERMITTED = -2015, /**< chaining (e.g. of config command handlers) not permitted */
RS_RET_OK = 0 /**< operation successful */
};
typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */