diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 09:45:19 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 09:45:19 +0000 |
commit | f97c90d12b9ae64a64cde84bb3fa3ca5ee207838 (patch) | |
tree | f308e54af6d65da17e398dd0964aa70b97a8cee4 /rsyslog.h | |
parent | f48f11f50e9337e499e6e7b56ca3f143cb55f181 (diff) | |
download | rsyslog-f97c90d12b9ae64a64cde84bb3fa3ca5ee207838.tar.gz rsyslog-f97c90d12b9ae64a64cde84bb3fa3ca5ee207838.tar.bz2 rsyslog-f97c90d12b9ae64a64cde84bb3fa3ca5ee207838.zip |
moved discard functionality to an output module
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -50,6 +50,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth /* return states for config file processing */ RS_RET_CONFLINE_PROCESSED = -2000, /**< config line was processed, do not pass to any other module */ RS_RET_CONFLINE_UNPROCESSED = -2001,/**< config line was not processed, pass to other module */ + RS_RET_DISCARDMSG = -2002, /**< discard message (no error state, processing request!) */ + RS_RET_INCOMPATIBLE = -2003, /**< function not compatible with requested feature */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ |