diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-13 09:39:21 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-13 09:39:21 +0000 |
commit | 18bea60667f4ced5ac65e91fbd7c7a00ba22b319 (patch) | |
tree | 01513cac707247724ed93ffa9594cb3e81c77f6c /stream.h | |
parent | 7e91b2298d3e3f0cced47fa32697b2b095638489 (diff) | |
download | rsyslog-18bea60667f4ced5ac65e91fbd7c7a00ba22b319.tar.gz rsyslog-18bea60667f4ced5ac65e91fbd7c7a00ba22b319.tar.xz rsyslog-18bea60667f4ced5ac65e91fbd7c7a00ba22b319.zip |
added ability to monitor file accross rotation
Diffstat (limited to 'stream.h')
-rw-r--r-- | stream.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -49,8 +49,9 @@ /* stream types */ typedef enum { - STREAMTYPE_FILE_SINGLE = 0, - STREAMTYPE_FILE_CIRCULAR = 1 + STREAMTYPE_FILE_SINGLE = 0, /**< read a single file */ + STREAMTYPE_FILE_CIRCULAR = 1, /**< circular files */ + STREAMTYPE_FILE_MONITOR = 2 /**< monitor a (third-party) file */ } strmType_t; typedef enum { |