diff options
-rw-r--r-- | doc/imtcp.html | 2 | ||||
-rw-r--r-- | doc/imudp.html | 2 | ||||
-rw-r--r-- | doc/rsyslog_conf_modules.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/imtcp.html b/doc/imtcp.html index 01ea2802..feb0bdd7 100644 --- a/doc/imtcp.html +++ b/doc/imtcp.html @@ -110,7 +110,7 @@ is not used and some senders emit multi-line messages into the message stream. <p><b>Example:</b></p> <p>This sets up a TCP server on port 514 and permits it to accept up to 500 connections:<br> </p> -<textarea rows="15" cols="60">module(load="/folder/to/rsyslog/plugins/imtcp/.libs/imtcp" MaxSessions="500") # needs to be done just once +<textarea rows="15" cols="60">module(load="imtcp" MaxSessions="500") input(type="imtcp" port="514") </textarea> <p>Note that the global parameters (here: max sessions) need to be set when the module is loaded. Otherwise, the parameters will not apply. diff --git a/doc/imudp.html b/doc/imudp.html index b1a3ecc9..1ebce4d7 100644 --- a/doc/imudp.html +++ b/doc/imudp.html @@ -55,7 +55,7 @@ Binds the listener to a specific <a href="multi_ruleset.html">ruleset</a>.</li> <p><b>Sample:</b></p> <p>This sets up an UPD server on port 514:<br> </p> -<textarea rows="15" cols="60">module(load="/folder/to/rsyslog/plugins/imudp/.libs/imudp") # needs to be done just once +<textarea rows="15" cols="60">module(load="imudp") # needs to be done just once input(type="imudp" port="514") </textarea> diff --git a/doc/rsyslog_conf_modules.html b/doc/rsyslog_conf_modules.html index cbd60faf..4186dac4 100644 --- a/doc/rsyslog_conf_modules.html +++ b/doc/rsyslog_conf_modules.html @@ -35,7 +35,7 @@ to message generators. <ul> <li><a href="imfile.html">imfile</a> - input module for text files</li> <li><a href="imrelp.html">imrelp</a> - RELP input module</li> -<li>imudp - udp syslog message input</li> +<li><a href="imudp.html">imudp</a> - udp syslog message input</li> <li><a href="imtcp.html">imtcp</a> - input plugin for tcp syslog</li> <li><a href="imptcp.html">imptcp</a> - input plugin for plain tcp syslog (no TLS but faster)</li> <li><a href="imgssapi.html">imgssapi</a> - input plugin for plain tcp and GSS-enabled syslog</li> |