summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* calls to prctl() need to be based on configure results (cross-platform issue)Rainer Gerhards2009-07-162-3/+5
| | | | | This is for another prctl() call, not present in the beta version (looks like it would make sense to stick these into a utility function)
* Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-162-4/+7
|\
| * calls to prctl() need to be based on configure results (cross-platform issue)Rainer Gerhards2009-07-162-4/+7
| |
* | documenting imported bugfixRainer Gerhards2009-07-151-0/+6
| | | | | | | | v4-beta was so far unreleased, so it was a bug only here
* | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-151-0/+2
|\|
| * bugfix: memory leak with some input modulesRainer Gerhards2009-07-151-0/+2
| |
* | final touches for 4.5.1v4.5.1Rainer Gerhards2009-07-153-5/+5
| |
* | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-1516-473/+114
|\|
| * CONFIG CHANGE: $HUPisRestart default is now "off".Rainer Gerhards2009-07-156-13/+97
| | | | | | | | | | We are doing this to support removal of restart-type HUP in v5. Elaborate doc added to explain reasoning and actions to be taken.
| * removed outdated html version of man pageRainer Gerhards2009-07-151-438/+0
| | | | | | | | html doc is better
| * Merge branch 'v3-stable' into v4-betaRainer Gerhards2009-07-1510-22/+17
| |\
| | * removed mentioning HUP as a way of restarting from the doc setRainer Gerhards2009-07-1510-26/+21
| | | | | | | | | | | | ... part of the deprecation effort for v5
* | | added ability for the TCP output action to "rebind" its send socketRainer Gerhards2009-07-142-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | ...after sending n messages (actually, it re-opens the connection, the name is used because this is a concept very similiar to $ActionUDPRebindInterval). New config directive $ActionSendTCPRebindInterval added for the purpose. By default, rebinding is disabled. This is considered# useful for load balancers.
* | | added tcp output rebinding option.Rainer Gerhards2009-07-143-1/+25
| | | | | | | | | | | | | | | | | | added tcp output rebinding option. needs some more testing and doc
* | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-142-1/+2
|\| |
| * | bugfix: fromhost-ip was sometimes truncatedRainer Gerhards2009-07-142-1/+2
| | |
* | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-133-3/+6
|\| |
| * | Merge branch 'v3-stable' into v4-betaRainer Gerhards2009-07-133-3/+6
| |\| | | | | | | | | | | | | Conflicts: ChangeLog
| | * fix compile error in zip sender patchRainer Gerhards2009-07-131-2/+2
| | | | | | | | | | | | | | | | | | ... at least I was smart enough to remind me that I did not do one test ;) That reminder was the compiler error. Now removed and test done ;) [simple things tend to work, lol]
| | * better configure error message if mysql-devel is missingRainer Gerhards2009-07-131-1/+1
| | |
| | * bugfix: sending syslog messages with zip compression did not workRainer Gerhards2009-07-132-2/+5
| | |
* | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-102-1/+2
|\| |
| * | bugfix: potential segfault when zip-compressed syslog records were received ↵Rainer Gerhards2009-07-102-1/+2
| | | | | | | | | | | | (double free)
* | | small performance improvement and cleanupRainer Gerhards2009-07-094-159/+174
| | | | | | | | | | | | | | | | | | optimized substring processing, should bring a small enhancement when forwarding with the default forwarding templates. Also did some uchar cleanup in msg.c (thus so many changes, in reality they are few...).
* | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-0914-23/+95
|\| | | | | | | | | | | | | | Conflicts: tests/nettester.c
| * | bugfix: message could be truncated after TAG, often when forwardingRainer Gerhards2009-07-0913-20/+95
| | | | | | | | | | | | | | | | | | This was a result of an internal processing error if maximum field sizes had been specified in the property replacer. Also did some testbench improvements, including omstdout.
| * | bugfix: omfwd segfault when debugging is turned onRainer Gerhards2009-07-091-2/+0
| | |
* | | added capability to write incomplete buffers after an inactivity timeoutRainer Gerhards2009-07-072-7/+40
| | | | | | | | | | | | | | | | | | for the stream class and thus finally activating omfile's timeout capability in a useful way without polling and too-high performance overhead.
* | | fixed a bug introduced today that lead to an abort in queue disk modeRainer Gerhards2009-07-074-11/+15
| | |
* | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-072-10/+17
|\| |
| * | bugfix: property msg was lost when working with disk queuesRainer Gerhards2009-07-072-6/+13
| | |
| * | bugfix: properties inputname, fromhost, fromhost-ip were lostRainer Gerhards2009-07-072-5/+5
| | | | | | | | | | | | ... when working with disk queues.
* | | solved a race conditionRainer Gerhards2009-07-074-16/+52
| | |
* | | clean solution for "writing" arbrietary-size user buffers to a streamRainer Gerhards2009-07-071-42/+28
| | |
* | | stream now uses a singular buffer strucuture for writingRainer Gerhards2009-07-071-6/+12
| | |
* | | moved locking primitivesRainer Gerhards2009-07-071-3/+19
| | |
* | | moved zip part to writer threadRainer Gerhards2009-07-062-71/+91
| | | | | | | | | | | | | | | | | | ... this is necessary in preparation for the final solution (we need to have a "unified" writer). If it causes worse performance to have the zip writher togehter with the synchronous write, we may do an async write...
* | | some minor cleanupRainer Gerhards2009-07-062-17/+18
| | |
* | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-062-2/+4
|\| |
| * | performance enhancement: much faster, up to twice as fastRainer Gerhards2009-07-062-2/+4
| | | | | | | | | | | | | | | | | | (depending on configuration). This was a small change, but with big results. There is more potential to explore, but the effects were so dramatic that I think it makes sense to include this fix.
* | | first shot at asynchronous stream writer with timeout capabilityRainer Gerhards2009-07-0612-89/+201
|/ / | | | | | | | | ... seems to work on quick testing, but needs a far more testing and improvement. Good milestone commit.
* | bugfix: abort condition when RecvFrom was not set and message reduction was onRainer Gerhards2009-07-062-6/+14
| | | | | | | | Happend e.g. with imuxsock.
* | added $klogConsoleLogLevel directiveRainer Gerhards2009-07-034-14/+25
| | | | | | | | ...which permits to set a new console log level while rsyslog is active
* | bugfix: missing initialization during timestamp creationv4.5.0Rainer Gerhards2009-07-033-0/+8
| | | | | | | | | | This could lead to timestamps written in the wrong format, but not to an abort.
* | omfile itself no longer needs zlibRainer Gerhards2009-07-022-4/+1
| |
* | Merge branch 'beta'Rainer Gerhards2009-07-021-1/+1
|\ \
| * | Merge branch 'v3-stable' into betaRainer Gerhards2009-07-021-1/+1
| |\| | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| | * preparing for 3.22.1v3.22.1Rainer Gerhards2009-07-023-3/+3
| | |
* | | updating version info to 4.5.0Rainer Gerhards2009-07-023-3/+3
| | |
* | | completed ruleset documentationRainer Gerhards2009-07-023-33/+113
| | |