diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-13 13:22:25 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-13 13:22:25 +0200 |
commit | 73b16a5d7703078a46d960bd8922d2ae3a662769 (patch) | |
tree | bc20bc1721bc3aed8ba57686db5de7e456b2870f /tools | |
parent | e2b229868955a6f6a6380273314d0d90ddad1273 (diff) | |
download | rsyslog-73b16a5d7703078a46d960bd8922d2ae3a662769.tar.gz rsyslog-73b16a5d7703078a46d960bd8922d2ae3a662769.tar.bz2 rsyslog-73b16a5d7703078a46d960bd8922d2ae3a662769.zip |
added test for property replacer field functionality to testbench
plus some cosmetic changes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/syslogd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index 7ee5dbd7..cae07811 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -1155,6 +1155,7 @@ DEFFUNC_llExecFunc(processMsgDoActions) ABORT_FINALIZE(RS_RET_OK); } + /* MULTIQUEUE: look at this below! (I say: batch states!) */ iRetMod = actionCallAction(pAction, pDoActData->pMsg); if(iRetMod == RS_RET_DISCARDMSG) { ABORT_FINALIZE(RS_RET_DISCARDMSG); @@ -1170,7 +1171,9 @@ finalize_it: } -/* Process (consume) a received message. Calls the actions configured. +/* Process (consume) a received message from the main queue. Here, messages are + * filtered and those where the filter evaluates to true are passed to the action + * queue for further processing. * rgerhards, 2005-10-13 */ static void |