mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-22 14:10:43 +01:00
simplified and thus speeded up the queue engine, also fixed some potential race conditions (in very unusual shutdown conditions) along the way. The threading model has seriously changes, so there may be some regressions. NOTE: the code passed basic tests, but there is still more work and testing to be done. This commit should be treated with care.
21 lines
501 B
Bash
Executable File
21 lines
501 B
Bash
Executable File
echo \[inputname.sh\]: testing $InputTCPServerInputName directive
|
|
$srcdir/killrsyslog.sh # kill rsyslogd if it runs for some reason
|
|
|
|
echo port 12514
|
|
./nettester -tinputname_imtcp_12514 -cinputname_imtcp -itcp -p12514
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo port 12515
|
|
./nettester -tinputname_imtcp_12515 -cinputname_imtcp -itcp -p12515
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo port 12516
|
|
./nettester -tinputname_imtcp_12516 -cinputname_imtcp -itcp -p12516
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|