Remove building with NOCRYPTO option
[minix.git] / crypto / external / bsd / openssl / dist / doc / ssl / SSL_get_version.pod
blob9ae6f2550858a6677b9bd20a66d13e7678d5275d
1 =pod
3 =head1 NAME
5 SSL_get_version - get the protocol version of a connection.
7 =head1 SYNOPSIS
9  #include <openssl/ssl.h>
11  const char *SSL_get_version(const SSL *ssl);
13 =head1 DESCRIPTION
15 SSL_get_version() returns the name of the protocol used for the
16 connection B<ssl>.
18 =head1 RETURN VALUES
20 The following strings can be returned:
22 =over 4
24 =item SSLv2
26 The connection uses the SSLv2 protocol.
28 =item SSLv3
30 The connection uses the SSLv3 protocol.
32 =item TLSv1
34 The connection uses the TLSv1.0 protocol.
36 =item TLSv1.1
38 The connection uses the TLSv1.1 protocol.
40 =item TLSv1.2
42 The connection uses the TLSv1.2 protocol.
44 =item unknown
46 This indicates that no version has been set (no connection established).
48 =back
50 =head1 SEE ALSO
52 L<ssl(3)|ssl(3)>
54 =cut