summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-19 17:38:37 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-19 17:38:37 +0000
commit7a146af86f153a14b525333df795b78e01b63b4a (patch)
treea1b14db282b9f598c14f4325613094f983df07af /rsyslog.h
parentb5a09481faa2eda03b568839ed724970bc8a1adc (diff)
downloadrsyslog-7a146af86f153a14b525333df795b78e01b63b4a.tar.gz
rsyslog-7a146af86f153a14b525333df795b78e01b63b4a.tar.xz
rsyslog-7a146af86f153a14b525333df795b78e01b63b4a.zip
- begun implementation of expression parsing logic
- implemented, simpstr, var, number in tokenizer
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 67e61e70..655cf5d9 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -124,6 +124,9 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_NO_DRIVERS = -2048, /**< a required drivers missing */
RS_RET_NO_DRIVERNAME = -2049, /**< driver name missing where one was required */
RS_RET_EOS = -2050, /**< end of stream (of whatever) */
+ RS_RET_SYNTAX_ERROR = -2051, /**< syntax error, eg. during parsing */
+ RS_RET_INVALID_OCTAL_DIGIT = -2052, /**< invalid octal digit during parsing */
+ RS_RET_INVALID_HEX_DIGIT = -2053, /**< invalid hex digit during parsing */
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 */