| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| | |
This is no longer needed.
|
| |\
| | |
| | |
| | |
| | | |
Conflicts:
plugins/cust1/Makefile.am
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Thanks to Michael Biebl for identifying this as the culprit for
several build-related issues. The plugin is a placeholder, and was
not used for quite some while. It is definitely not worth the effort
to keep it along. If needed, can be quickly created.
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* support for config load phases & module() parameters
* support for default templates
* driverdirectory is now cleanly a global parameter, but can no longer
be specified as an action paramter. Note that in previous versions
this parameter was ignored in all but the first action definition
NOTE: more solid testing is needed for these changes. We spare this,
as the module is scheduled for more work. This commit is more or
less staging work.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In that case, the CEE/lumberjack spec says MSG is NON-CEE and must
be treated accordingly. This means no JSON parsing happens. The case
is equal to missing CEE cookie.
Also adapted module to new interfaces provided by msg object.
|
| | |
| | |
| | |
| | | |
modified: mmjsonparse.c
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
as a tester, imudp now supports binding to multiple options
based on a string array
|
| | | |
|
|\ \ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Conflicts:
ChangeLog
action.c
grammar/grammar.y
runtime/modules.h
runtime/rsconf.c
|
| | | |
| | | |
| | | |
| | | | |
This could lead to startup with invalid parameters.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\| | |
|
|\ \ \ \ |
|
| |\ \ \ \
| | |/ / /
| |/| / /
| | |/ / |
|
| | |\|
| | | |
| | | |
| | | |
| | | | |
Conflicts:
plugins/imrelp/imrelp.c
|
| | | | |
|
| |\| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Conflicts:
ChangeLog
configure.ac
doc/manual.html
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This does not have any practical problems associated with it, EXCECPT
that it caused almost all valgrind testbench tests to fail.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Future json-c versions will handle this transparently, for now we have
to do it manually.
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
|
| | | |
| | | |
| | | |
| | | |
| | | | |
modified: plugins/imkmsg/imkmsg.c
modified: plugins/imkmsg/kmsg.c
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
modified: imkmsg.c
modified: imkmsg.h
modified: kmsg.c
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
modified: imkmsg.c
modified: imkmsg.h
modified: kmsg.c
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is still in development, bute ready to be commited to master.
modified: Makefile.am
modified: configure.ac
new file: plugins/imkmsg/Makefile.am
new file: plugins/imkmsg/imkmsg.c
new file: plugins/imkmsg/imkmsg.h
new file: plugins/imkmsg/kmsg.c
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This does not have any practical problems associated with it, EXCECPT
that it caused almost all valgrind testbench tests to fail.
|
| | | | |
|
| | | | |
|
|\| | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Conflicts:
grammar/grammar.y
grammar/lexer.l
|
| |\| |
| | | |
| | | |
| | | |
| | | | |
Conflicts:
ChangeLog
|
| | |\|
| | | |
| | | |
| | | |
| | | | |
Conflicts:
ChangeLog
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
SCM_CREDENTIALS is not a socket option; its value is usually
0x2 which on most archs corresponds to socket option
SO_REUSEADDR, but on mips-arch there is no socket option
with value 0x2 and SO_REUSEADDR = 0x4, so the call will fail
with ENOPROTOOPT 'Protocol not available'; skip it.
There does not seem any other special setsockopt call is
needed anyway, besides the above.
In addition Jonny Törnbom commented:
SCM_CREDENTIALS is a control message type, not a socket option, so using
setsockopt(...SCM_CREDENTIALS...) is potentially dangerous and wrong and
should be deleted from the code. (SCM_CREDENTIALS is used in conjuction
with SO_PASSCRED which is the socket option to use.)
|