diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-11 17:38:33 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-11 17:38:33 +0200 |
commit | 8e430258fdc9b0577ea8e54dae21cc5942f90104 (patch) | |
tree | c24a069a78c960334d2d54b5bcbde7be26a08ea1 /runtime | |
parent | 9823c73d1d07e50e6bec7f7c02c88d61d6955526 (diff) | |
download | rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.tar.gz rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.tar.xz rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.zip |
added capability to draw configuration graphs
- added $GenerateConfigGraph configuration command which can be used
to generate nice-looking (and very informative) rsyslog configuration
graphs.
- added $ActionName configuration directive (currently only used for
graph generation, but may find other uses)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index 026fbbed..fd5a5371 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -267,6 +267,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_ERR_FORK = -2118, /**< error during fork() */ RS_RET_ERR_WRITE_PIPE = -2119, /**< error writing to pipe */ RS_RET_RSCORE_TOO_OLD = -2120, /**< rsyslog core is too old for ... (eg this plugin) */ + RS_RET_FILENAME_INVALID = -2140, /**< filename invalid, not found, no access, ... */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |