diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-27 09:07:20 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-09-27 09:07:20 +0000 |
commit | 963ded1f45e5d4a257d2e0e51755c623f29bc103 (patch) | |
tree | db982495a52ac9f0589f1342d235de233f1a5b86 /rsyslog.h | |
parent | 6610aee651ee0d0fb4a489eed8ddce3d250ab0d0 (diff) | |
download | rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.tar.gz rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.tar.bz2 rsyslog-963ded1f45e5d4a257d2e0e51755c623f29bc103.zip |
nearing completion of allowedSenders functionality
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 */ |