Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / ssl / SSL_get_version.pod
blobcc271db2c534a99bb6c393ada158a08fff4bdea9
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_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