diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-03 10:07:38 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-03 10:07:38 +0000 |
commit | adbf55ece666c71e882c370a74efa0bbf3239226 (patch) | |
tree | e95a9c8927460313b02141ed3d66f9d672c717cc /rsyslog.h | |
parent | e0414c4b9ed88a39e08870030c673bec9a3f1d4b (diff) | |
download | rsyslog-adbf55ece666c71e882c370a74efa0bbf3239226.tar.gz rsyslog-adbf55ece666c71e882c370a74efa0bbf3239226.tar.xz rsyslog-adbf55ece666c71e882c370a74efa0bbf3239226.zip |
- added CODE_STD_FINALIZERparseSelectorAct to module-generation macros
- restructered rsyslogd startup - moved startWorker() to a more appropriate
place
- updated ommysql.c to fully support suspension/resumption by rule engine
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -67,6 +67,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth 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_INVALID_PARAMS = -2016,/**< supplied parameters are invalid */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ |