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

« back to all changes in this revision

Viewing changes to template.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2009-06-23 12:12:43 UTC
  • mfrom: (1.1.11 upstream) (3.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20090623121243-d2fejarzidywnn17
Tags: 4.2.0-1
* New upstream release of the now stable v4 branch.
  - Fix warnings when /etc/rsyslog.d/ is empty. Closes: #530228
* debian/patches/imudp_multiple_udp_sockets.patch
  - Removed, merged upstream.
* debian/rsyslog.default
  - Set default compat mode to '4'.
* debian/rsyslog.logcheck.ignore.server
  - Update logcheck rules files to also ignore rsyslogd and imklog stop
    messages.
* debian/control
  - Bump Standards-Version to 3.8.2. No further changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
                                unsigned bSpaceCC: 1;           /* change control characters to spaceescape? */
95
95
                                unsigned bEscapeCC: 1;          /* escape control characters? */
96
96
                                unsigned bDropLastLF: 1;        /* drop last LF char in msg (PIX!) */
97
 
                                unsigned bSecPathDrop: 1;               /* drop slashes, replace dots, empty string */
98
 
                                unsigned bSecPathReplace: 1;            /* replace slashes, replace dots, empty string */
99
 
                                unsigned bSPIffNo1stSP: 1;              /* replace slashes, replace dots, empty string */
 
97
                                unsigned bSecPathDrop: 1;       /* drop slashes, replace dots, empty string */
 
98
                                unsigned bSecPathReplace: 1;    /* replace slashes, replace dots, empty string */
 
99
                                unsigned bSPIffNo1stSP: 1;      /* replace slashes, replace dots, empty string */
 
100
                                unsigned bCSV: 1;               /* format field in CSV (RFC 4180) format */
100
101
                        } options;              /* options as bit fields */
101
102
                } field;
102
103
        } data;
125
126
 * BEFORE msg.h, even if your code file does not actually need it.
126
127
 * rgerhards, 2007-08-06
127
128
 */
 
129
rsRetVal tplToArray(struct template *pTpl, msg_t *pMsg, uchar*** ppArr);
128
130
rsRetVal tplToString(struct template *pTpl, msg_t *pMsg, uchar** ppSz);
129
131
rsRetVal doSQLEscape(uchar **pp, size_t *pLen, unsigned short *pbMustBeFreed, int escapeMode);
130
132