summaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'v4-stable' into v4-develRainer Gerhards2011-05-201-5/+0
|\
| * cleanup: removed useless & undocumented config directive from imrelpRainer Gerhards2011-05-201-5/+0
| |
* | Merge branch 'v4-stable' into v4-develRainer Gerhards2011-05-092-3/+13
|\| | | | | | | | | | | | | Conflicts: tcpsrv.c tests/Makefile.am tests/tcpflood.c
| * bugfix: IPv6-address could not be specified in omrelpRainer Gerhards2011-04-141-2/+12
| | | | | | | | | | this was due to improper parsing of ":" closes: http://bugzilla.adiscon.com/show_bug.cgi?id=250
| * bugfix: omlibdbi did not use password from rsyslog.conRainer Gerhards2011-03-091-1/+1
| | | | | | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=203
* | imudp: removing new scheduling priority setting codeRainer Gerhards2011-01-101-42/+0
| | | | | | | | | | as it had too many implications. This will now be part of v5 only.
* | added support for systems without epoll_create1()Rainer Gerhards2010-12-171-1/+19
| |
* | added $IMUDPSchedulingPolicy and $IMUDPSchedulingPriority config settingsRainer Gerhards2010-12-171-0/+42
| |
* | Merge branch 'v4-stable' into v4-develRainer Gerhards2010-12-161-3/+1
|\| | | | | | | | | Conflicts: runtime/parser.c
| * some cleanup based on clang static analyzer resultsRainer Gerhards2010-12-161-3/+1
| |
* | Fix a potential missing '\0' on too long strings.Luis Fernando Muñoz Mejías2010-11-301-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | By implementing a trivial strlcpy it's much easier to detect string truncations and react to them. This also gives a noticeable speedup in buffer handling (can be HUGE), since strlcpy() doesn't clear all the buffer entry before writing data. Converted all uses of strncpy() into strlcpy(). Also, we don't need to check for some null pointers, as there are no malloc-like operations in the doAction loop.
* | imfile improvementsRainer Gerhards2010-10-241-18/+17
| | | | | | | | | | | | - added the $InputFilePersistStateInterval config directive to imfile - changed imfile so that the state file is never deleted (makes imfile more robust in regard to fatal failures)
* | Merge branch 'v4-stable' into v4-develRainer Gerhards2010-10-191-3/+3
|\| | | | | | | | | | | | | Conflicts: runtime/cfsysline.c tools/ompipe.c
| * fixing some compile problems on FreeBSDRainer Gerhards2010-10-191-3/+3
| |
* | Merge branch 'v4-stable' into v4-develRainer Gerhards2010-10-151-1/+4
|\| | | | | | | | | | | Conflicts: ChangeLog runtime/stream.c
| * fixed incomplete mergeRainer Gerhards2010-10-151-0/+1
| |
| * imfile: bugfixes in regard to large files (> 2GB)Rainer Gerhards2010-10-151-1/+3
| | | | | | | | | | | | | | | | - bugfix: a couple of problems that imfile had on some platforms, namely Ubuntu (not their fault, but occured there) - bugfix: imfile utilizes 32 bit to track offset. Most importantly, this problem can not experienced on Fedora 64 bit OS (which has 64 bit long's!)
* | Merge branch 'v4-stable-imptcp' into v4-develRainer Gerhards2010-08-111-10/+17
|\ \
| * | imptcp: added $InputPTCPServerAddtlFrameDelimiter directiveRainer Gerhards2010-08-111-5/+8
| | | | | | | | | | | | also improved testbench
| * | fixed minor issue: imptcp did a close(-1) on each acceptRainer Gerhards2010-08-111-1/+2
| | |
| * | imptcp: added $InputPTCPServerNotifyOnConnectionClose directiveRainer Gerhards2010-08-111-5/+8
| | | | | | | | | | | | plus some minor cleanup
* | | Merge branch 'v4-stable-imptcp' into tmpRainer Gerhards2010-08-112-0/+1174
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile.am configure.ac runtime/rsyslog.h tests/Makefile.am
| * | some cleanup and minor optimizationRainer Gerhards2010-08-101-33/+32
| | |
| * | added tests for imptcp and fixed some problems with itRainer Gerhards2010-08-101-18/+41
| | | | | | | | | | | | it now also works reliably in edge-triggered mode
| * | added imptcpRainer Gerhards2010-08-102-0/+1152
| |/ | | | | | | | | imptcp is a simplified, Linux-specific and potentielly fast syslog plain tcp input plugin (NOT supporting TLS!)
* | added omuxsock, which permits to write message to local Unix socketsRainer Gerhards2010-08-062-0/+323
| | | | | | | | this is the counterpart to imuxsock, enabling fast local forwarding
* | solved alignment errors on Solaris SparcRainer Gerhards2010-04-221-1/+1
| |
* | finalized work on imsolarisRainer Gerhards2010-04-201-110/+126
| | | | | | | | | | | | | | | | Did a couple of clean-ups and made the module more robust. Among others, improved performance and structure, fixed the recovery handler (which did not correctly work before) and straightend out some minor issues. Doc and some platform tests are still missing, but other than that this version looks pretty good.
* | improved quality of imsolaris codeRainer Gerhards2010-04-194-131/+163
| | | | | | | | including refctoring for a more simple solution
* | changed imsolaris to use submitMsg() APIRainer Gerhards2010-04-191-16/+4
| | | | | | | | | | This includes a modification to the rsyslog engine so that messages without PRI inside the message can properly be handled.
* | some more cleanupRainer Gerhards2010-04-193-29/+11
| |
* | minor cleanup (cosmetic)Rainer Gerhards2010-04-152-70/+52
| |
* | first version of imsolaris created, cleanup for solaris doneRainer Gerhards2010-04-157-609/+401
| | | | | | | | more cleanup required, but things now basically work
* | some cleanup of solaris imklogRainer Gerhards2010-04-123-49/+23
| |
* | Merge branch 'v4-stable-solaris' into v4-develRainer Gerhards2010-04-1211-7/+1562
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html tools/omfile.c tools/syslogd.c
| * | git "bugfix": added file previously forgottenRainer Gerhards2010-04-011-0/+1
| | |
| * | cleanup in solaris components for imklogRainer Gerhards2010-03-262-98/+8
| | |
| * | bugfix: local unix system log socket was deleted even when it was not configuredRainer Gerhards2010-03-261-2/+11
| | | | | | | | | | | | | | | | | | Also made sure that /dev/log will not be processed by imuxsock when running under Solaris -- otherwise, the module may had accidently deleted the log socket and cause problems.
| * | added initial files for door support & fixed imklogRainer Gerhards2010-03-265-48/+1048
| | | | | | | | | | | | imklog now basically works, but needs quite some more work to do
| * | interim commit: imklog/solaris compiles, but does not workRainer Gerhards2010-03-263-604/+389
| | | | | | | | | | | | | | | saving this area of work, because some further clarification is needed. Do not try to run the current imklog, it will fail.
| * | added forgotten fileRainer Gerhards2010-03-251-0/+545
| | |
| * | added some starting point for a solaris imklog driverRainer Gerhards2010-03-252-0/+296
| |/ | | | | | | ... far from being functional at this time!
| * enabled imudp to send complete text of large messages to debug logRainer Gerhards2010-03-181-1/+1
| | | | | | | | | | ... it turns out that this is sometimes extremely useful when debugging real-world problems at user sites.
| * bugfix: recent patch to fix small memory leak could cause invalid free.Rainer Gerhards2010-03-161-2/+2
| | | | | | | | This could only happen during config file parsing.
| * improved PostgreSQL database create script, provided doc on PostgreSQL setupMarc Schiffbauer2010-02-081-1/+1
| | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| * bugfix: imuxsock incorrectly stated inputname "imudp"Rainer Gerhards2010-02-061-2/+2
| | | | | | | | Thanks to Ryan Lynch for reporting this.
| * Merge branch 'v4-stable' into v4-betaRainer Gerhards2010-02-041-0/+9
| |\
| | * bugfix: several smaller bugs resolved after flexelint reviewvarmojfekoj2010-02-041-0/+9
| | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
| | * Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-10-141-5/+4
| | |\ | | | | | | | | | | | | | | | | Conflicts: plugins/imrelp/imrelp.c
* | | \ integrating varmojfekoj's "unlimited select()" patch into v4-develRainer Gerhards2009-11-173-16/+40
|\ \ \ \