mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 19:50:40 +01:00
24 lines
565 B
C
24 lines
565 B
C
/* This is the header for the output channel code of rsyslog.
|
|
* Please see syslogd.c for license information.
|
|
* This code is placed under the GPL.
|
|
* begun 2005-06-21 rgerhards
|
|
*/
|
|
struct outchannel {
|
|
struct outchannel *pNext;
|
|
char *pszName;
|
|
int iLenName;
|
|
char *pszFileTemplate;
|
|
off_t uSizeLimit;
|
|
char *cmdOnSizeLimit;
|
|
};
|
|
|
|
struct outchannel* ochConstruct(void);
|
|
struct outchannel *ochAddLine(char* pName, char** pRestOfConfLine);
|
|
struct outchannel *ochFind(char *pName, int iLenName);
|
|
void ochDeleteAll(void);
|
|
void ochPrintList(void);
|
|
|
|
/*
|
|
* vi:set ai:
|
|
*/
|