oops, reinstate TLSv1 string
This commit is contained in:
parent
19043426b9
commit
2d1e9ce753
1 changed files with 2 additions and 0 deletions
|
@ -2436,6 +2436,8 @@ const char *SSL_get_version(const SSL *s)
|
|||
{
|
||||
if (s->version == TLS1_1_VERSION)
|
||||
return("TLSv1.1");
|
||||
if (s->version == TLS1_VERSION)
|
||||
return("TLSv1");
|
||||
else if (s->version == SSL3_VERSION)
|
||||
return("SSLv3");
|
||||
else if (s->version == SSL3_VERSION)
|
||||
|
|
Loading…
Reference in a new issue