summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2008-10-22 06:46:13 +0000
committerLutz Jänicke <jaenicke@openssl.org>2008-10-22 06:46:13 +0000
commit155c70b8824c83961d6306f00e129d58bb69239d (patch)
tree85d21a62c185f625c4a752844d8428b05e957343 /apps
parent7c494529731f2287f7fa06ddf2c0c98fcd8c5f3c (diff)
Allow detection of input EOF in quiet mode by adding -no_ign_eof option
to s_client application. PR: #1761 Submitted by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/s_client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 8922cdcf61..759e90218e 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -221,6 +221,7 @@ static void sc_usage(void)
BIO_printf(bio_err," -crlf - convert LF from terminal into CRLF\n");
BIO_printf(bio_err," -quiet - no s_client output\n");
BIO_printf(bio_err," -ign_eof - ignore input eof (default when -quiet)\n");
+ BIO_printf(bio_err," -no_ign_eof - don't ignore input eof\n");
BIO_printf(bio_err," -ssl2 - just use SSLv2\n");
BIO_printf(bio_err," -ssl3 - just use SSLv3\n");
BIO_printf(bio_err," -tls1 - just use TLSv1\n");
@@ -437,6 +438,8 @@ int MAIN(int argc, char **argv)
}
else if (strcmp(*argv,"-ign_eof") == 0)
c_ign_eof=1;
+ else if (strcmp(*argv,"-no_ign_eof") == 0)
+ c_ign_eof=0;
else if (strcmp(*argv,"-pause") == 0)
c_Pause=1;
else if (strcmp(*argv,"-debug") == 0)