diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-04-12 11:22:04 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-04-12 11:22:04 +0200 |
commit | 815bae1f35c67ff7b8caf7b446a9e4cf1c870aa3 (patch) | |
tree | ed79ed74aa65072c501fbcab43a7efd2e3c661c0 /runtime/rsyslog.h | |
parent | 2679dd4af107290845711c4e265ed1e8b0c051a8 (diff) | |
download | rsyslog-815bae1f35c67ff7b8caf7b446a9e4cf1c870aa3.tar.gz rsyslog-815bae1f35c67ff7b8caf7b446a9e4cf1c870aa3.tar.bz2 rsyslog-815bae1f35c67ff7b8caf7b446a9e4cf1c870aa3.zip |
logenc: add parameters to select cipher algo and mode
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 ab57eace..4cdd1c1e 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -408,6 +408,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_EI_NO_EXISTS = -2323,/**< .encinfo file does not exist (status, not necessarily error!)*/ RS_RET_EI_WR_ERR = -2324,/**< error writing an .encinfo file */ RS_RET_EI_INVLD_FILE = -2325,/**< header indicates the file is no .encinfo file */ + RS_RET_CRY_INVLD_ALGO = -2326,/**< user specified invalid (unkonwn) crypto algorithm */ + RS_RET_CRY_INVLD_MODE = -2327,/**< user specified invalid (unkonwn) crypto mode */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |