SSL_get_version 3 2005-04-23 0.9.9-dev OpenSSL
NAME
SSL_get_version - get the protocol version of a connection.
LIBRARY
libcrypto, -lcrypto
SYNOPSIS
#include
const char *SSL_get_version(const SSL *ssl);
DESCRIPTION
_S_S_L___g_e_t___c_i_p_h_e_r___v_e_r_s_i_o_n_(_) returns the name of the protocol used for the
connection ssssll.
RETURN VALUES
The following strings can occur:
-
SSLv2
The connection uses the SSLv2 protocol.
-
-
SSLv3
The connection uses the SSLv3 protocol.
-
-
TLSv1
The connection uses the TLSv1 protocol.
-
-
unknown
This indicates that no version has been set (no connection established).
-
SEE ALSO
_s_s_l(3)