summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-02-11 13:30:47 +0000
committerAndy Polyakov <appro@openssl.org>2012-02-11 13:30:47 +0000
commitcbc0b0ec2d5a76228a172d490eb1a728f31d8b9f (patch)
tree8c96ec1740bc4a7e33cba1dfefe684cc15836bf6 /apps
parent1df80b6561aa977b70bf3556b8bd763e5e731e64 (diff)
apps/s_cb.c: recognized latest TLS version.
Diffstat (limited to 'apps')
-rw-r--r--apps/s_cb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index c0f089c4b4..38eae7fe36 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -360,6 +360,9 @@ void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *
case TLS1_1_VERSION:
str_version = "TLS 1.1 ";
break;
+ case TLS1_2_VERSION:
+ str_version = "TLS 1.2 ";
+ break;
case DTLS1_VERSION:
str_version = "DTLS 1.0 ";
break;