~ubuntu-branches/ubuntu/lucid/rsyslog/lucid

« back to all changes in this revision

Viewing changes to outchannel.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2007-10-19 17:21:49 UTC
  • Revision ID: james.westby@ubuntu.com-20071019172149-ie6ej2xve33mxiu7
Tags: upstream-1.19.10
ImportĀ upstreamĀ versionĀ 1.19.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This is the header for the output channel code of rsyslog.
 
2
 * Please see syslogd.c for license information.
 
3
 * This code is placed under the GPL.
 
4
 * begun 2005-06-21 rgerhards
 
5
 */
 
6
struct outchannel {
 
7
        struct outchannel *pNext;
 
8
        char *pszName;
 
9
        int iLenName;
 
10
        uchar *pszFileTemplate;
 
11
        off_t   uSizeLimit;
 
12
        uchar *cmdOnSizeLimit;
 
13
};
 
14
 
 
15
struct outchannel* ochConstruct(void);
 
16
struct outchannel *ochAddLine(char* pName, unsigned char** pRestOfConfLine);
 
17
struct outchannel *ochFind(char *pName, int iLenName);
 
18
void ochDeleteAll(void);
 
19
void ochPrintList(void);
 
20
 
 
21
/*
 
22
 * vi:set ai:
 
23
 */