apps/s_cb.c: recognize latest TLS versions [from HEAD].
authorAndy Polyakov <appro@openssl.org>
Sat, 11 Feb 2012 13:31:16 +0000 (13:31 +0000)
committerAndy Polyakov <appro@openssl.org>
Sat, 11 Feb 2012 13:31:16 +0000 (13:31 +0000)
apps/s_cb.c

index 8a9461b364c22f5a6bf5624ac5a6c146aab51552..38eae7fe367725b314eb2196d4fa6deb73d1c998 100644 (file)
@@ -357,6 +357,12 @@ void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *
        case TLS1_VERSION:
                str_version = "TLS 1.0 ";
                break;
+       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;