OpenBSD manual page server

Manual Page Search Parameters

SSL_GET_VERSION(3) Library Functions Manual SSL_GET_VERSION(3)

SSL_get_version, SSL_versionget the protocol version of a connection

#include <openssl/ssl.h>

const char *
SSL_get_version(const SSL *ssl);

int
SSL_version(const SSL *ssl);

() returns the name of the protocol used for the connection ssl.

() returns an integer constant representing that protocol.

The following strings or integers can be returned:

"TLSv1" or TLS1_VERSION
The connection uses the TLSv1.0 protocol.
"TLSv1.1" or TLS1_1_VERSION
The connection uses the TLSv1.1 protocol.
"TLSv1.2" or TLS1_2_VERSION
The connection uses the TLSv1.2 protocol.
"DTLSv1" or DTLS1_VERSION
The connection uses the Datagram Transport Layer Security 1.0 protocol.
"unknown"
This indicates that no version has been set (no connection established).

ssl(3)

SSL_get_version() and SSL_version() are available in all versions of OpenSSL.

December 10, 2016 OpenBSD-6.1