mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 02:40:42 +01:00
Well, actually this and a lot of related things. I improved the testbench so that the new capabilities are automatically tested and also did some general cleanup. The current multiple tcp listener solution will probably receive some further cleanup, too, but looks quite OK so far. I also reviewed the way tcpsrv et all work, in preparation of using this code for imdiag. I need to document the findings, especially as the code is rather complicated "thanks" to the combination of plain tcp and gssapi transport modes.
20 lines
451 B
Plaintext
20 lines
451 B
Plaintext
# This is a special case, thus we define the inputs ourselfs
|
|
$ModLoad ../plugins/omstdout/.libs/omstdout
|
|
|
|
$ModLoad ../plugins/imtcp/.libs/imtcp
|
|
|
|
$InputTCPServerInputname 12514
|
|
$InputTCPServerRun 12514
|
|
|
|
$InputTCPServerInputname 12515
|
|
$InputTCPServerRun 12515
|
|
|
|
$InputTCPServerInputname 12516
|
|
$InputTCPServerRun 12516
|
|
|
|
$ErrorMessagesToStderr off
|
|
|
|
# use a special format that we can easily parse in expect
|
|
$template fmt,"%inputname%\n"
|
|
*.* :omstdout:;fmt
|