summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_txt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-12-07 14:31:02 +0100
committerDr. Stephen Henson <steve@openssl.org>2009-12-07 14:31:02 +0100
commit637f374ad49d5f6d4f81d87d7cdd226428aa470c (patch)
tree2f471a88015ddb5c1e0b3b8b36717db006b0361e /ssl/ssl_txt.c
parentPR: 2111 (diff)
downloadopenssl-637f374ad49d5f6d4f81d87d7cdd226428aa470c.tar.xz
openssl-637f374ad49d5f6d4f81d87d7cdd226428aa470c.zip
Initial experimental TLSv1.1 support
Diffstat (limited to 'ssl/ssl_txt.c')
-rw-r--r--ssl/ssl_txt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/ssl_txt.c b/ssl/ssl_txt.c
index 3122440e26..cab712b9a8 100644
--- a/ssl/ssl_txt.c
+++ b/ssl/ssl_txt.c
@@ -115,6 +115,8 @@ int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
s="SSLv2";
else if (x->ssl_version == SSL3_VERSION)
s="SSLv3";
+ else if (x->ssl_version == TLS1_1_VERSION)
+ s="TLSv1.1";
else if (x->ssl_version == TLS1_VERSION)
s="TLSv1";
else if (x->ssl_version == DTLS1_VERSION)