diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-30 17:09:28 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-30 17:09:28 +0100 |
commit | 62f6a7d7b4b3c9fee0fffea961a201d24a059b2c (patch) | |
tree | 50dedb5ef56879fd3aa1c83f487cc60c302c7b70 /dirty.h | |
parent | 7182c6def360378038c9dc824b7cdf8f3d73a73f (diff) | |
download | rsyslog-62f6a7d7b4b3c9fee0fffea961a201d24a059b2c.tar.gz rsyslog-62f6a7d7b4b3c9fee0fffea961a201d24a059b2c.tar.bz2 rsyslog-62f6a7d7b4b3c9fee0fffea961a201d24a059b2c.zip |
fix missing functionality: ruleset(){} could not specify ruleset queue
The "queue.xxx" parameter set was not supported, and legacy ruleset
config statements did not work (by intention). The fix introduces the
"queue.xxx" parameter set. It has some regression potential, but only
for the new functionality. Note that using that interface it is possible
to specify duplicate queue file names, which will cause trouble. This
will be solved in v7.3, because there is a too-large regression
potential for the v7.2 stable branch.
Diffstat (limited to 'dirty.h')
-rw-r--r-- | dirty.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ rsRetVal submitMsg(msg_t *pMsg); rsRetVal logmsgInternal(int iErr, int pri, uchar *msg, int flags); rsRetVal parseAndSubmitMessage(uchar *hname, uchar *hnameIP, uchar *msg, int len, int flags, flowControl_t flowCtlTypeu, prop_t *pInputName, struct syslogTime *stTime, time_t ttGenTime, ruleset_t *pRuleset); rsRetVal diagGetMainMsgQSize(int *piSize); /* for imdiag */ -rsRetVal createMainQueue(qqueue_t **ppQueue, uchar *pszQueueName); +rsRetVal createMainQueue(qqueue_t **ppQueue, uchar *pszQueueName, struct cnfparamvals *queueParams); /* Intervals at which we flush out "message repeated" messages, * in seconds after previous message is logged. After each flush, |