aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-03-10 12:18:28 +0000
committerRichard Levitte <levitte@openssl.org>2000-03-10 12:18:28 +0000
commitce301b6b0b69c98e4c711b09757345a165f25f94 (patch)
tree1d64166f8645882bb4f9862db640e0f018a2bc30 /doc
parent0dd39898681d628d4215b145a542c8f1182ac41f (diff)
downloadopenssl-ce301b6b0b69c98e4c711b09757345a165f25f94.tar.gz
Add the possibility (with -ign_eof) to ignore end of file on input but
still not be quiet. Also make it clear that -quiet implicitely means -ign_eof as well.
Diffstat (limited to 'doc')
-rw-r--r--doc/apps/s_client.pod16
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/apps/s_client.pod b/doc/apps/s_client.pod
index 3ede134164..2f80375319 100644
--- a/doc/apps/s_client.pod
+++ b/doc/apps/s_client.pod
@@ -22,6 +22,7 @@ B<openssl> B<s_client>
[B<-state>]
[B<-nbio>]
[B<-crlf>]
+[B<-ign_eof>]
[B<-quiet>]
[B<-ssl2>]
[B<-ssl3>]
@@ -122,9 +123,15 @@ turns on non-blocking I/O
this option translated a line feed from the terminal into CR+LF as required
by some servers.
+=item B<-ign_eof>
+
+inhibit shutting down the connection when end of file is reached in the
+input.
+
=item B<-quiet>
-inhibit printing of session and certificate information.
+inhibit printing of session and certificate information. This implicitely
+turns on B<-ign_eof> as well.
=item B<-ssl2>, B<-ssl3>, B<-tls1>, B<-no_ssl2>, B<-no_ssl3>, B<-no_tls1>
@@ -155,9 +162,10 @@ command for more information.
If a connection is established with an SSL server then any data received
from the server is displayed and any key presses will be sent to the
-server. If the line begins with an B<R> then the session will be
-renegotiated. If the line begins with a B<Q> the connection will be closed
-down.
+server. When used interactively (which means neither B<-quiet> nor B<-ign_eof>
+have been given), the session will be renegociated if the line begins with an
+B<R>, and if the line begins with a B<Q> or if end of file is reached, the
+connection will be closed down.
=head1 NOTES