diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-27 09:46:30 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-05-27 09:46:30 +0200 |
commit | ae387d6900c02ba655bd970c8053103a1b3f1dcd (patch) | |
tree | d76b5362bbfb7febbb36ab7f9332c429479b6346 /runtime/rsyslog.h | |
parent | 331a6442021405ecc0704fc11adb42178c917e67 (diff) | |
download | rsyslog-ae387d6900c02ba655bd970c8053103a1b3f1dcd.tar.gz rsyslog-ae387d6900c02ba655bd970c8053103a1b3f1dcd.tar.xz rsyslog-ae387d6900c02ba655bd970c8053103a1b3f1dcd.zip |
client now provides cert even if it is not signed by one of the server's trusted CAs (gtls)
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r-- | runtime/rsyslog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index 5f39c3d8..7b6d08ff 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -234,6 +234,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_CERT_EXPIRED = -2092, /**< we are past a x.509 cert's expiration time */ RS_RET_CERT_NOT_YET_ACTIVE = -2094, /**< x.509 cert's activation time not yet reached */ RS_RET_SYS_ERR = -2095, /**< system error occured (e.g. time() returned -1, quite unexpected) */ + RS_RET_FILE_NO_STAT = -2096, /**< can not stat() a file */ + RS_RET_FILE_TOO_LARGE = -2097, /**< a file is larger than permitted */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |