mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 07:22:34 +00:00
More docu fixes
This commit is contained in:
parent
689b133817
commit
642b729622
2 changed files with 7 additions and 7 deletions
|
@ -3282,7 +3282,7 @@ label(OPTION_OPENSSL_METHOD)dit(bf(tt(method=<ssl-method>)))
|
|||
dit(tt(TLS1)) Select TLS protocol version 1.
|
||||
dit(tt(TLS1.1)) Select TLS protocol version 1.1.
|
||||
dit(tt(TLS1.2)) Select TLS protocol version 1.2.
|
||||
When this option is not provided OpenSSL negotiates the mothod with its
|
||||
When this option is not provided OpenSSL negotiates the method with its
|
||||
peer.
|
||||
enddit()
|
||||
label(OPTION_OPENSSL_MIN_PROTO_VERSION)dit(bf(tt(min-proto-version)))
|
||||
|
@ -4466,16 +4466,16 @@ mancommand(\.nf)
|
|||
mancommand(\fBsocat --experimental -u \\)
|
||||
mancommand(\.RS)
|
||||
mancommand(\fBPOSIXMQ-RECV:/queue1,fork,max-children=3 \\
|
||||
SYSTEM:"robot.sh"\fP)
|
||||
SYSTEM:"worker.sh"\fP)
|
||||
|
||||
mancommand(\.RE)
|
||||
mancommand(\.fi)
|
||||
|
||||
htmlcommand(<hr><div class="shell">socat --experimental -u \
|
||||
POSIXMQ-RECV:/queue1,fork,max-children=3 \
|
||||
SYSTEM:"robot.sh"</div>)
|
||||
SYSTEM:"worker.sh"</div>)
|
||||
|
||||
Receives messages (packets) from POSIX message queue and, for each messages,
|
||||
Receives messages (packets) from POSIX message queue and, for each message,
|
||||
forks a sub process that reads and processes the message. At most 3 sub
|
||||
processes are allowed at the same time.
|
||||
|
||||
|
|
|
@ -4,15 +4,15 @@
|
|||
|
||||
# Shell script to perform group communications, sometimes called brokering.
|
||||
# It starts a Socat instance that forks a child process for each
|
||||
# connected client; the clients communicate via IPv4 broadcast
|
||||
# connected client; the child processes communicate via IPv4 broadcast
|
||||
|
||||
# Examples:
|
||||
|
||||
# socat-broker.sh TCP-L:1234
|
||||
# Now connect with an arbitrary number of clients like TCP:<server>:1234
|
||||
# Now connect with any number of clients like TCP:<server>:1234
|
||||
|
||||
# socat-broker.sh SSL-L:1234,cert=server.pem,cafile=clients.crt
|
||||
# Now connect with an arbitrary number of clients like SSL:<server>:1234,cafile=server.cert=clients.pem
|
||||
# Now connect with an arbitrary number of clients like SSL:<server>:1234,cafile=server,cert=clients.pem
|
||||
|
||||
ECHO="echo -e"
|
||||
|
||||
|
|
Loading…
Reference in a new issue