diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-11 16:52:19 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-11 16:52:19 +0000 |
commit | a80f7776c543d80f773ea6149e73e008f7273186 (patch) | |
tree | 14d313bd62c5d8ff45c7466a6acb63fc0111ebed /stream.h | |
parent | 19b8d9e239f150127d8af15694f88c20ed88bd25 (diff) | |
download | rsyslog-a80f7776c543d80f773ea6149e73e008f7273186.tar.gz rsyslog-a80f7776c543d80f773ea6149e73e008f7273186.tar.xz rsyslog-a80f7776c543d80f773ea6149e73e008f7273186.zip |
support for de-serializing strm objects added
Diffstat (limited to 'stream.h')
-rw-r--r-- | stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,6 +72,7 @@ typedef struct strm_s { size_t iMaxFileSize;/* maximum size a file may grow to */ int iMaxFiles; /* maximum number of files if a circular mode is in use */ int iFileNumDigits;/* min number of digits to use in file number (only in circular mode) */ + int bDeleteOnClose; /* set to 1 to auto-delete on close -- be careful with that setting! */ /* dynamic properties, valid only during file open, not to be persistet */ size_t sIOBufSize;/* size of IO buffer */ uchar *pszDir; /* Directory */ @@ -84,7 +85,6 @@ typedef struct strm_s { size_t iBufPtr; /* pointer into current buffer */ int iUngetC; /* char set via UngetChar() call or -1 if none set */ int bInRecord; /* if 1, indicates that we are currently writing a not-yet complete record */ - int bDeleteOnClose; /* set to 1 to auto-delete on close -- be careful with that setting! */ } strm_t; /* prototypes */ |