summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>1999-04-27 16:48:06 +0000
committerBodo Möller <bodo@openssl.org>1999-04-27 16:48:06 +0000
commit67a4728511cad54b22b871aa2674944d111f30d2 (patch)
tree1d71279d41c29b97639cfa182e0fd5e4cc81c799 /apps/s_client.c
parent0c28ae22f17d231649d14c2d1ccc4e7d5ca17654 (diff)
A new comment.
Submitted by: Reviewed by: PR:
Diffstat (limited to 'apps/s_client.c')
-rw-r--r--apps/s_client.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 44f228a31c..f0c2280d2e 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -720,6 +720,11 @@ static void print_stuff(BIO *bio, SSL *s, int full)
p=SSL_get_shared_ciphers(s,buf,BUFSIZ);
if (p != NULL)
{
+ /* This works only for SSL 2. In later protocol
+ * versions, the client does not know what other
+ * ciphers (in addition to the one to be used
+ * in the current connection) the server supports. */
+
BIO_printf(bio,"---\nCiphers common between both SSL endpoints:\n");
j=i=0;
while (*p)