summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* preparing for 4.4.2 releasev4.4.2Rainer Gerhards2009-10-091-1/+1
|
* RFC5424 formatted messages with only structured data and no MSG part were ↵Rainer Gerhards2009-10-013-5/+18
| | | | | | | improperly handled. This was a regression of one of the last bugfixes, so no previously released version contained this bug (thus it does not show up in the ChangeLog).
* Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-09-302-3/+8
|\
| * Merge branch 'v2-stable' into v3-stableRainer Gerhards2009-09-302-4/+9
| |\
| | * doc bugfix: default for $DirCreateMode incorrectly statedRainer Gerhards2009-09-302-4/+9
| | |
* | | bugfix: zero-sized UDP messages are no longer processedRainer Gerhards2009-09-292-0/+8
| | | | | | | | | | | | | | | | | | | | | Until now, they were forwarded to processing, but this makes no sense Also, it looks like the system seems to provide a zero return code on a UDP recvfrom() from time to time for some internal reasons. These "receives" are now silently ignored.
* | | bugfix: invalid handling of zero-sized messagesRainer Gerhards2009-09-292-2/+6
| | | | | | | | | | | | could lead to mis-addressing and potential memory corruption/segfault
* | | bumped version numberRainer Gerhards2009-09-292-2/+2
| | |
* | | bugfix: random data could be appended to message, possibly causing segfaultsRainer Gerhards2009-09-246-80/+160
| | |
* | | Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-09-0412-26/+26
|\| | | | | | | | | | | | | | Conflicts: doc/rsyslog_conf.html
| * | clarified use of $ActionsSendStreamDriver[AuthMode/PermittedPeers]Rainer Gerhards2009-09-042-3/+7
| | | | | | | | | | | | in doc set (require TLS drivers)
| * | removed mentioning HUP as a way of restarting from the doc setRainer Gerhards2009-07-1510-26/+21
| | | | | | | | | | | | ... part of the deprecation effort for v5
* | | bugfix: reverse lookup reduction logic in imudp do DNS queries too oftenRainer Gerhards2009-09-034-2/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | A comparison was done between the current and the former source address. However, this was done on the full sockaddr_storage structure and not on the host address only. This has now been changed for IPv4 and IPv6. The end result of this bug could be a higher UDP message loss rate than necessary (note that UDP message loss can not totally be avoided due to the UDP spec)
* | | preparing for 4.4.1 releasev4.4.1Rainer Gerhards2009-09-023-3/+3
| | |
* | | bugfix (backport): omfwd segfaultRainer Gerhards2009-08-272-2/+5
| | | | | | | | | | | | | | | | | | | | | Note that the orginal (higher version) patch states this happens only when debugging mode is turned on. That statement is wrong: if debug mode is turned off, the message is not being emitted, but the division by zero in the actual parameters still happens.
* | | bugfix: invalid double-quoted PRI, among others in outgoing messagesRainer Gerhards2009-08-252-1/+4
| | | | | | | | | | | | | | | This causes grief with all receivers. Bug tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=147
* | | features requiring Java are automatically disabled if Java is not presentRainer Gerhards2009-08-253-1/+13
| | | | | | | | | | | | (thanks to Michael Biebl for his help!)
* | | bugfix: Java testing tools were required, even if testbench was disabledRainer Gerhards2009-08-242-2/+8
| | | | | | | | | | | | | | | | | | This resulted in build errors if no Java was present on the build system, even though none of the selected option actually required Java. (I forgot to backport a similar fix to newer releases).
* | | Merge branch 'v4.3.2' (v4-beta) into v4-stablev4.4.0Rainer Gerhards2009-08-21150-1197/+6895
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html tests/Makefile.am
| * | | cleanup (removed left-over from backport)v4.3.2Rainer Gerhards2009-06-241-2/+0
| | | |
| * | | Merge branch 'v4-stable' into betaRainer Gerhards2009-06-241-2/+2
| |\ \ \
| * \ \ \ Merge branch 'v4-stable' into betaRainer Gerhards2009-06-243-3/+4
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | | | | minor: prepped ChangeLog for next betaRainer Gerhards2009-06-241-1/+1
| | | | | |
| * | | | | Merge branch 'beta'Rainer Gerhards2009-06-184-8/+25
| |\ \ \ \ \
| * | | | | | removed long-obsoleted property UxTradMsgRainer Gerhards2009-06-168-77/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... as well as some cleanup (some commented-out code is left to support UxTradMsg again is someone really complains ;)).
| * | | | | | done various optimizations to the stringbuf and its usersRainer Gerhards2009-06-1618-360/+282
| | | | | | |
| * | | | | | some performance optimizationsRainer Gerhards2009-06-1614-104/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - saved gettimeofday() calls in imtcp (and increased reception buffer) - somewhat optimized stringbuf.c - some other optimizations
| * | | | | | backported macros necessary to create output modules with transaction supportRainer Gerhards2009-06-041-1/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this does not mean the v4 engine will support batches and output transactions, but I can now write plugins that will work equally well with v4 AND v5. I consider this useful during the rewrite of omfile.
| * | | | | | backported some of the v5 testbenchRainer Gerhards2009-06-0410-41/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this permits us to keep a persistent test environment between v4 and v5, most importantly using the same tools. As far as the actual tests are concerned, some had issues. I had no time to check if that was an issue with the test or an actual issue with the v3/4 engine. Will do that at some later stage.
| * | | | | | added config switch --enable-testbench=no to turn off testbenchRainer Gerhards2009-06-033-0/+19
| | | | | | |
| * | | | | | strmsrv now supports KEEPALIVE socket optionRainer Gerhards2009-06-027-4/+82
| | | | | | |
| * | | | | | slightly extended strms_sess interfaceRainer Gerhards2009-06-022-1/+10
| | | | | | |
| * | | | | | added a generic network stream serverRainer Gerhards2009-06-028-1/+1444
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (in addition to rather specific syslog tcp server)
| * | | | | | added support for custom modulesRainer Gerhards2009-06-023-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... this provides some basic support to integrate extensions that are not direct parts of rsyslog to be built during its build process.
| * | | | | | Merge branch 'udpdrop'Rainer Gerhards2009-05-293-20/+58
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: runtime/conf.c
| | * | | | | | added ability for the UDP output action to rebind its send socket after ↵Rainer Gerhards2009-05-294-21/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sending n messages New config directive $ActionSendUDPRebindInterval added for the purpose. By default, rebinding is disabled. This is considered useful for load balancers.
| * | | | | | | Merge branch 'beta'Rainer Gerhards2009-05-293-2/+3
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Conflicts: runtime/rsyslog.h
| * | | | | | | fix: import from beta accidently disable imdiagRainer Gerhards2009-05-291-3/+0
| | | | | | | |
| * | | | | | | Merge branch 'beta'Rainer Gerhards2009-05-293-18/+25
| |\ \ \ \ \ \ \
| * | | | | | | | added forgotten fileRainer Gerhards2009-05-291-0/+0
| | | | | | | | |
| * | | | | | | | Merge branch 'beta' into masterRainer Gerhards2009-05-289-5/+84
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: tests/Makefile.am
| * | | | | | | | | doc: added info on when $OptimizeForUniprocessor was made availableRainer Gerhards2009-05-281-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge branch 'diag'Rainer Gerhards2009-05-286-6/+8
| |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | fixed make distcheckRainer Gerhards2009-05-286-6/+8
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'diag'Rainer Gerhards2009-05-2720-217/+317
| |\| | | | | | | | |
| | * | | | | | | | | fixed typoRainer Gerhards2009-05-271-3/+1
| | | | | | | | | | |
| | * | | | | | | | | greatly enhanced testbenchRainer Gerhards2009-05-2720-217/+319
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The imdiag module now can very effectively inject messages, which also frees us from uncertainties of tcp reception and processing. All shell script based tests have been modularized, what makes it far easier to create new tests. Also, the test bench now executes more reliable and much faster, because we can now rely on actual engine information where we previously did just a dumb sleep.
| * | | | | | | | | | Merge branch 'diag'Rainer Gerhards2009-05-254-1/+92
| |\| | | | | | | | |
| | * | | | | | | | | added test suite for persistent queue shutdownRainer Gerhards2009-05-254-1/+92
| | | | | | | | | | |
| * | | | | | | | | | updated project statusRainer Gerhards2009-05-251-4/+4
| |/ / / / / / / / /