mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 20:20:41 +01:00
28 lines
902 B
Bash
Executable File
28 lines
902 B
Bash
Executable File
#!/bin/bash
|
|
# added 2010-08-11 by Rgerhards
|
|
#
|
|
# This file is part of the rsyslog project, released under GPLv3
|
|
echo ====================================================================================
|
|
echo TEST: \[imptcp_addtlframedelim.sh\]: test imptcp additional frame delimiter
|
|
. $srcdir/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
$ModLoad ../plugins/imptcp/.libs/imptcp
|
|
$MainMsgQueueTimeoutShutdown 10000
|
|
$InputPTCPServerAddtlFrameDelimiter 0
|
|
$InputPTCPServerRun 13514
|
|
|
|
$template outfmt,"%msg:F,58:2%\n"
|
|
$OMFileFlushOnTXEnd off
|
|
$OMFileFlushInterval 2
|
|
$OMFileIOBufferSize 256k
|
|
local0.* ./rsyslog.out.log;outfmt
|
|
'
|
|
startup
|
|
. $srcdir/diag.sh tcpflood -m20000 -F0 -P129
|
|
#sleep 2 # due to large messages, we need this time for the tcp receiver to settle...
|
|
shutdown_when_empty # shut down rsyslogd when done processing messages
|
|
wait_shutdown # and wait for it to terminate
|
|
seq_check 0 19999
|
|
exit_test
|