summaryrefslogtreecommitdiffstats
path: root/plugins/omudpspoof/omudpspoof.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'v6-stable' into betaRainer Gerhards2012-06-151-12/+2
|\ | | | | | | | | | | Conflicts: plugins/omudpspoof/omudpspoof.c tools/syslogd.c
| * Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-06-151-13/+2
| |\
| | * bugfix: randomized IP option header in omudpspoof caused problemsRainer Gerhards2012-06-151-13/+2
| | | | | | | | | | | | | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=327 Thanks to Rick Brown for helping to test out the patch.
| * | Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-06-011-0/+11
| |\|
* | | Merge branch 'v5-beta' into betaRainer Gerhards2012-05-291-0/+11
|\ \ \ | | |/ | |/| | | | | | | Conflicts: ChangeLog
| * | bugfix/omudpspoof: problems, including abort, happend when run on multiple ↵Rainer Gerhards2012-05-141-0/+11
| | | | | | | | | | | | | | | | | | | | | threads. Root cause is that libnet is not thread-safe. Omudpspoof now guards libnet calls with their own mutex.
* | | cleanup: removed unused but set parametersRainer Gerhards2012-04-231-2/+1
| | |
* | | bugfix: omudpspoof did not work correctly if no spoof hostname was configuredRainer Gerhards2012-04-231-1/+1
| | |
* | | v6.1/2 scoping support removed from pluginsRainer Gerhards2012-01-191-3/+2
| | |
* | | Merge branch 'v6-stable-noscoping' into masterRainer Gerhards2012-01-191-8/+8
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html plugins/imfile/imfile.c plugins/imklog/imklog.c plugins/immark/immark.c plugins/imptcp/imptcp.c plugins/imrelp/imrelp.c plugins/imtcp/imtcp.c plugins/imtemplate/imtemplate.c plugins/imudp/imudp.c plugins/imuxsock/imuxsock.c plugins/mmsnmptrapd/mmsnmptrapd.c plugins/omtemplate/omtemplate.c runtime/glbl.c runtime/parser.c tools/omfile.c tools/syslogd.c
| * | undoing v6.1 config scoping interface, part IRainer Gerhards2012-01-181-8/+8
| | | | | | | | | | | | The most common files are now changed, more needs to be done.
* | | milestone: added module config namesRainer Gerhards2011-07-201-0/+1
| | |
* | | renaming conf.* wasn't a good idea -- undoingRainer Gerhards2011-04-191-1/+1
| | | | | | | | | | | | | | | too many dependencies, things get cluttered (and merging probably gets problematic). Now new config will be "conf2".
* | | renamed conf.c to legacyconf.c to make room for new config systemRainer Gerhards2011-04-191-1/+1
|/ /
* | Merge branch 'v5-beta'Rainer Gerhards2011-03-111-0/+1
|\| | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html plugins/omlibdbi/omlibdbi.c tests/Makefile.am tests/diag.sh
| * added work-around for bug in gtls, which causes fd leak when using TLSBojan Smojver2011-02-231-0/+1
| | | | | | | | | | | | | | | | The capability has been added for module to specify that they do not like being unloaded. related bug tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=222 Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | Merge branch 'master' into tmpRainer Gerhards2010-08-111-4/+3
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html plugins/omudpspoof/omudpspoof.c runtime/rsyslog.h also updated omuxsock and imptcp to new interfaces
| * changed omudpspoof default spoof address to simplify typical use caseRainer Gerhards2010-08-051-5/+4
| |
* | fixed regression from last commitRainer Gerhards2010-07-271-0/+1
| | | | | | | | config variables were not properly initialized
* | milestone commit: output plugin interface changes (may NOT run)Rainer Gerhards2010-07-271-35/+49
|/ | | | | | | The output interface has been changed, but we do not yet utilize the new interface. Also, it looks like a regression was introduced. But before hunting it down, I'd like to make a commit (what also easys the regresion hunt).
* bugfix: omudpspoof miscalculated source and destination portsRainer Gerhards2009-11-121-3/+5
| | | | | | | while this was probably not noticed for source ports, it resulted in almost all destination ports being wrong, except for the default port of 514, which by virtue of its binary representation was calculated correct (and probably thus the bug not earlier detected).
* more cleanup and working towards a parser module calling interfaceRainer Gerhards2009-11-031-1/+1
| | | | | | I cleaned up a lot of config variable access along the way. This version compiles and runs, but does not yet offer any enhanced functionality. pmrfc5424 is just a dummy that is not yet being used.
* enhanced test environment (including testbench)Rainer Gerhards2009-10-221-1/+2
| | | | | | | | support for enhancing probability of memory addressing failure by using non-NULL default value for malloced memory (optional, only if requested by configure option). This helps to track down some otherwise undetected issues within the testbench and is expected to be very useful in the future.
* done implementing omudpspoofRainer Gerhards2009-07-101-193/+98
| | | | | | 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-091-14/+23
|
* first version supporting udp spoofing and non-spoofing at the same timeRainer Gerhards2009-07-091-396/+126
| | | | | | omudpspoof is now a dedicated output module. It's calling semantics so far are based on omfwd, plus the need for the template to have the IP address as a string in the starting position.
* moved udp spoofing code to its own output module (omudpspoof)Rainer Gerhards2009-07-091-0/+856