summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | doc: add enhancement to ChangeLogRainer Gerhards2013-10-261-0/+2
| | | | | | |
* | | | | | | Make use of int64 json numbers, if availablePavel Levshin2013-10-264-1/+20
| | | | | | |
* | | | | | | slight performance optimization if GCC is usedRainer Gerhards2013-10-263-1/+18
| |_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | We give branch prediction hints for the frequent RETiRet macro which is used for error handling. Some slight performance gain is to be expected from that.
* | | | | | Merge branch 'v7-stable'Rainer Gerhards2013-10-262-0/+4
|\| | | | |
| * | | | | bugfix: memory leak in strlen() RainerScript functionRainer Gerhards2013-10-252-0/+4
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | Thanks to Gregoire Seux for reportig this bug. closes: http://bugzilla.adiscon.com/show_bug.cgi?id=486
* | | | | Merge branch 'v7-stable'Rainer Gerhards2013-10-252-2/+7
|\| | | |
| * | | | bugfix: buffer overrun if re_extract function was called for submatch 50Rainer Gerhards2013-10-252-1/+3
| | | | | | | | | | | | | | | | | | | | Thanks to Pavel Levshin for reporting the problem and its location.
| * | | | bugfix: memleak in re_extract() functionRainer Gerhards2013-10-252-1/+4
| | | | | | | | | | | | | | | | | | | | Thanks to Pavel Levshin for reporting this problem.
* | | | | Merge branch 'v7-stable'Rainer Gerhards2013-10-252-1/+3
|\| | | | | |_|_|/ |/| | |
| * | | doc: add fix to ChangeLogRainer Gerhards2013-10-251-0/+2
| | | |
| * | | bugfix: memory leak in omhiredisPavel Levshin2013-10-251-1/+1
| | | |
* | | | Merge branch 'v7-stable'Rainer Gerhards2013-10-241-1/+5
|\| | | | |_|/ |/| | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html runtime/msg.c
| * | doc: update ChangeLogRainer Gerhards2013-10-241-0/+4
| | |
| * | Merge branch 'v7-stable' of git+ssh://git.adiscon.com/git/rsyslog into v7-stableRainer Gerhards2013-10-243-3/+3
| |\ \
| | * | preparing for 7.4.5v7.4.5Rainer Gerhards2013-10-163-3/+3
| | | |
| * | | bugfix: Segmentation fault on incorrect variable assignmentPavel Levshin2013-10-241-0/+6
| |/ /
* | | doc: update ChangeLogRainer Gerhards2013-10-241-0/+2
| | |
* | | bugfix: Segmentation fault on incorrect variable assignmentPavel Levshin2013-10-241-0/+6
| | |
* | | doc: add imuxsock fix to ChangeLogRainer Gerhards2013-10-241-0/+2
| | |
* | | imuxsock: add some clarifiying commentsRainer Gerhards2013-10-241-2/+4
| | |
* | | imuxsock: When syssock.use set to off, additional listeners cannot be createdPavel Levshin2013-10-241-2/+0
| | |
* | | re-enable global vars, but as an undocumented & unsupported featureRainer Gerhards2013-10-231-1/+1
| | | | | | | | | | | | This is done as we may be able to preserve the syntax.
* | | remove global variable supportRainer Gerhards2013-10-223-32/+16
| |/ |/| | | | | | | | | | | | | The original idea was not well thought out and global variables, as implemented, worked far different from what anybody would expect. As such, we consider the current approach as an experiment that did not work out and opt to removing it, clearing the way for a better future solution. Note: global vars were introduced in 7.5.3 on Sept, 11th 2013.
* | regression fix: global variable access did not workRainer Gerhards2013-10-211-2/+2
| |
* | regression fix: global variables could not be accessed via scriptRainer Gerhards2013-10-211-1/+1
| |
* | cleanup: remove (no longer?) needed structure memberRainer Gerhards2013-10-211-4/+0
| |
* | doc: document impstats ruleset parameterRainer Gerhards2013-10-202-0/+3
| |
* | impstats: initial shot at multi-ruleset supportRainer Gerhards2013-10-191-1/+39
| |
* | fix compiler warningRainer Gerhards2013-10-181-1/+1
| |
* | bugfix: imudp when using recvmmsg could report wrong sender IPRainer Gerhards2013-10-182-3/+6
| |
* | cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+0
| |
* | bugfix: running imupd on multiple threads lead to segfault if recvmmsg is ↵Rainer Gerhards2013-10-182-34/+45
| | | | | | | | available
* | refactor config property filter decoding and fix some memleaksRainer Gerhards2013-10-181-15/+19
| | | | | | | | | | all leaks are cosmetic, happen only once during startup and in error cases. Do not affect performance at all (but valgrind testing ;)).
* | fix cosmetic memleak when property filter is disabledRainer Gerhards2013-10-182-0/+3
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-182-2/+11
|\| | | | | | | | | Conflicts: runtime/conf.c
| * bugfix: invalid property filter was not properly disabled in rulesetRainer Gerhards2013-10-183-2/+10
| | | | | | | | | | | | | | | | Note that this bugfix introduces a very slight memory leak, which is cosmetic, as it just holds data until termination that is no longer needed. It is just the part of the config that was invalid. We will "fix" this "issue" in the devel version first, as the fix is a bit too intrusive to do without hard need in the stable version.
* | refactor property-based filter decodingRainer Gerhards2013-10-183-105/+106
| | | | | | | | among others, provides *much* better error messages to user
* | slight optimizations: avoid unnecessary writesRainer Gerhards2013-10-181-2/+4
| | | | | | | | but this happens only during config load, so no real gain
* | doc: mention bugfix in ChangeLogRainer Gerhards2013-10-181-0/+3
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-181-0/+3
|\|
| * doc: add last bugfix to ChangeLogRainer Gerhards2013-10-181-0/+3
| |
| * bugfix: potential misadressing when trimming cstr'sRainer Gerhards2013-10-181-1/+1
| |
* | include invalid property name in property filter error messageRainer Gerhards2013-10-181-4/+4
| |
* | remove obsolete functionRainer Gerhards2013-10-182-21/+0
| |
* | bugfix: potential misadressing when trimming cstr'sRainer Gerhards2013-10-181-1/+1
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-180-0/+0
|\| | | | | | | | | Conflicts: runtime/libgcry.h
| * remove compiler warningRainer Gerhards2013-10-181-2/+2
| |
| * add missing function prototypeRainer Gerhards2013-10-181-0/+1
| |
| * cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+4
| |
* | cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+4
| |