summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-09-27 09:07:20 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-09-27 09:07:20 +0000
commit963ded1f45e5d4a257d2e0e51755c623f29bc103 (patch)
treedb982495a52ac9f0589f1342d235de233f1a5b86 /rsyslog.h
parent6610aee651ee0d0fb4a489eed8ddce3d250ab0d0 (diff)
downloadrsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.tar.gz
rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.tar.xz
rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.zip
nearing completion of allowedSenders functionality
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 ccd5db89..d2775619 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -36,6 +36,9 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
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_NO_DIGIT = -3005, /**< an digit was expected, but none found (mostly parsing) */
+ RS_RET_NO_MORE_DATA = -3006, /**< insufficient data, e.g. end of string during parsing */
+ RS_RET_INVALID_IP = -3007, /**< invalid ip found where valid was expected */
RS_RET_OK = 0 /**< operation successful */
};
typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */