summaryrefslogtreecommitdiffstats
path: root/stream.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-13 09:39:21 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-13 09:39:21 +0000
commit18bea60667f4ced5ac65e91fbd7c7a00ba22b319 (patch)
tree01513cac707247724ed93ffa9594cb3e81c77f6c /stream.h
parent7e91b2298d3e3f0cced47fa32697b2b095638489 (diff)
downloadrsyslog-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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/stream.h b/stream.h
index 423ab492..53bcc41e 100644
--- a/stream.h
+++ b/stream.h
@@ -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 {