summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* more cleanup/simplification (forgot to remove one mutex lock)Rainer Gerhards2009-07-203-36/+10
|
* some more threading changesRainer Gerhards2009-07-204-44/+28
| | | | ... as well as some cleanup
* cleanup: removed no longer needed codeRainer Gerhards2009-07-202-20/+0
|
* removed mutex locksRainer Gerhards2009-07-174-34/+36
| | | | | ... by utilizing that we need to modify a state variable only in a sequential way during shutdown.
* further code simplificationRainer Gerhards2009-07-176-176/+54
| | | | | | | | | ... could even remove one mutex by using a better algorithm. I think I also spotted some situation in which a hang could have happened. As I can't fix it in v4 and less without moving to the new engine, I make no effort in testing this out. Hangs occur during shutdown, only (if at all). The code changes should also result in some mild performance improvement. Some bug potential, but overall the bug potential should have been greatly reduced.
* more code simplification, should also bring some performance enhancementRainer Gerhards2009-07-178-91/+45
| | | | reducing the number of thread cancellation state changes
* Merge branch 'beta'Rainer Gerhards2009-07-163-5/+12
|\ | | | | | | | | | | Conflicts: runtime/wti.c runtime/wtp.c
| * Merge branch 'v4-devel' into betaRainer Gerhards2009-07-164-7/+12
| |\
| | * 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
| | | |
* | | | some code simplificationRainer Gerhards2009-07-164-14/+11
| | | |
* | | | Merge branch 'detached' into masterRainer Gerhards2009-07-156-210/+18
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: tests/nettester.c
| * | | | further reduction in code size/complexity due to design changeRainer Gerhards2009-07-085-41/+3
| | | | |
| * | | | simplified worker thread handlingRainer Gerhards2009-07-085-171/+16
| | | | | | | | | | | | | | | | | | | | | | | | | based on now working with detached threads. This is probably the biggest patch in this series and with large bug potential.
* | | | | some more (very mild) cleanupRainer Gerhards2009-07-152-12/+1
| | | | |
* | | | | Merge branch 'beta'Rainer Gerhards2009-07-152-4/+8
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | Conflicts: ChangeLog
| * | | | Merge branch 'v4-devel' into betaRainer Gerhards2009-07-152-0/+8
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | 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
| | | | |
* | | | | some mild restart-type HUP cleanupRainer Gerhards2009-07-153-64/+14
| | | | | | | | | | | | | | | | | | | | | | | | | ... only those things that were obvious (and puzzled people looking at the code without konwing the subtle issues of HUP ;)).
* | | | | $HUPisRestart removedRainer Gerhards2009-07-154-24/+8
| | | | | | | | | | | | | | | | | | | | | | | | | ... but the rest of the code is not yet cleaned-up. Will do that slowly over time... (huge potential, but must be done carefully)
* | | | | cleaned up AUTHORS file and referencesRainer Gerhards2009-07-152-23/+15
| | | | | | | | | | | | | | | | | | | | ... was not well maintained at all, now refering to git
* | | | | updating service statusRainer Gerhards2009-07-151-4/+4
| | | | |
* | | | | Merge branch 'beta'Rainer Gerhards2009-07-1518-478/+157
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | | | added v5 compatibility notesRainer Gerhards2009-07-153-2/+24
| |/ / /
| * | | 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
* | | | | added tcp output rebinding option.Rainer Gerhards2009-07-143-1/+25
| | | | | | | | | | | | | | | | | | | | needs some more testing and doc
* | | | | Merge branch 'beta'Rainer Gerhards2009-07-142-1/+2
|\| | | |
| * | | | 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 'beta'Rainer Gerhards2009-07-133-3/+6
|\| | | |
| * | | | 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 'omudpspoof'Rainer Gerhards2009-07-104-201/+152
|\ \ \ \ \
| * | | | | done implementing omudpspoofRainer Gerhards2009-07-104-198/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is now a "good" rsyslog output module, working as usual. I've also sorted out some reentrency issues. Code is clean and ready to be tested in practice ;)
| * | | | | commiting interim version with ability to specify spoof sourceRainer Gerhards2009-07-092-14/+24
| | | | | |
* | | | | | Merge branch 'v4-devel'Rainer Gerhards2009-07-102-1/+2
|\ \ \ \ \ \ | |/ / / / / |/| / / / / | |/ / / /
| * | | | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-102-1/+2
| |\| | |