mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-11 05:00:41 +01:00
- Extracted basic OpenSSL helper functions into own module net_ossl.h/net_ossl.c Both are compiled into lmnsd_ossl. - Cleanup of OpenSSL code, fixed minor compiler and linking issues. - Added DTLS Sender option DTLS into tcpflood for testbench. - Add initial implementation of imdtls input module. Added to configure and makefile - Add initial implementation of omdtls output module. Added to configure and makefile - Add multiple basic tests for imdtls receiving data by using tcpflood. - Add multiple send-receive test for imdtls and omdtls based on existing tls tests. - Add timeout and sessionbreak tests for imdtls stress testing. closes: https://github.com/rsyslog/rsyslog/issues/5211
10 lines
356 B
Bash
Executable File
10 lines
356 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$(valgrind --version)" == "valgrind-3.11.0" ]; then
|
|
printf 'This test does NOT work with valgrind-3.11.0 - valgrind always reports\n'
|
|
printf 'a valgrind-internal bug. So we need to skip it.\n'
|
|
exit 77
|
|
fi
|
|
export USE_VALGRIND="YES"
|
|
# export RS_TEST_VALGRIND_EXTRA_OPTS="--keep-debuginfo=yes"
|
|
source ${srcdir:-.}/sndrcv_dtls_certvalid.sh
|