Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7d / doc / ssl / SSL_get_version.pod
blob24d52912565d1d92c9869152ef8b5319d8cf1893
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(SSL *ssl);
13 =head1 DESCRIPTION
15 SSL_get_cipher_version() returns the name of the protocol used for the
16 connection B<ssl>.
18 =head1 RETURN VALUES
20 The following strings can occur:
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 protocol.
36 =item unknown
38 This indicates that no version has been set (no connection established).
40 =back
42 =head1 SEE ALSO
44 L<ssl(3)|ssl(3)>
46 =cut