diff options
author | Hubert Kario <hkario@redhat.com> | 2021-06-14 13:38:02 +0200 |
---|---|---|
committer | Dmitry Belyavskiy <beldmit@gmail.com> | 2021-06-15 15:16:15 +0200 |
commit | 04fb4ec8facc5555e1e289029c289ebc4b487db8 (patch) | |
tree | 7adbeef27a14305c920e5596a8a7ab09c0391cbe /apps | |
parent | CORE: Move away the allocation of the temporary no_cache method store (diff) | |
download | openssl-04fb4ec8facc5555e1e289029c289ebc4b487db8.tar.xz openssl-04fb4ec8facc5555e1e289029c289ebc4b487db8.zip |
s_server: make -rev option easier to find (mention echo)
Since the service is echo-like (see TCP port 7 from RFC 862 or
gnutls-serv --echo), make it easier to find by mentioning "echo" in
the description of it in the help message an man page
Also fixes the man page inconsistency ("sends it back to the server")
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/15739)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/s_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c index e32d25e800..9c0c467ed6 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -856,7 +856,7 @@ const OPTIONS s_server_options[] = { {"brief", OPT_BRIEF, '-', "Restrict output to brief summary of connection parameters"}, {"rev", OPT_REV, '-', - "act as a simple test server which just sends back with the received text reversed"}, + "act as an echo server that sends back received text reversed"}, {"debug", OPT_DEBUG, '-', "Print more output"}, {"msg", OPT_MSG, '-', "Show protocol messages"}, {"msgfile", OPT_MSGFILE, '>', |