diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-19 10:29:24 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-19 10:29:24 +0000 |
commit | 3e8ba29e5cf041b9056b7a14f0000a9c1557fed0 (patch) | |
tree | 656ff16e27b6d43408daea9052819385b32b19aa /rsyslog.h | |
parent | e34ca1e7d952906fd2593850e3be47252211649c (diff) | |
download | rsyslog-3e8ba29e5cf041b9056b7a14f0000a9c1557fed0.tar.gz rsyslog-3e8ba29e5cf041b9056b7a14f0000a9c1557fed0.tar.xz rsyslog-3e8ba29e5cf041b9056b7a14f0000a9c1557fed0.zip |
added parsing of property-filter (but not complete property selector line
yet)
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -31,7 +31,11 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth { RS_RET_OUT_OF_MEMORY = -6, /**< memory allocation failed */ RS_RET_PROVIDED_BUFFER_TOO_SMALL = -50,/**< the caller provided a buffer, but the called function sees the size of this buffer is too small - operation not carried out */ - RS_TRUNCAT_TOO_LARGE = -3000, /**< truncation operation where too many chars should be truncated */ + RS_RET_ERR = -3000, /**< generic failure */ + RS_TRUNCAT_TOO_LARGE = -3001, /**< truncation operation where too many chars should be truncated */ + RS_RET_FOUND_AT_STRING_END = -3002, /**< some value found, but at the last pos of string */ + RS_RET_NOT_FOUND = -3003, /**< some requested value not found */ + RS_RET_MISSING_TRAIL_QUOTE = -3004, /**< an expected trailing quote is missing */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ |