diff options
author | schwarze <> | 2016-11-05 15:32:20 +0000 |
---|---|---|
committer | schwarze <> | 2016-11-05 15:32:20 +0000 |
commit | 5af30545c000c195ca6e44f207da004e5780ddb5 (patch) | |
tree | 1672f1234352c29443fcacb44e22f1b20f174d99 /src/lib/libssl/doc/SSL_get_version.3 | |
parent | ba7c6bac5d2c870a4d1c1ce9f08db5e57c660625 (diff) | |
download | openbsd-5af30545c000c195ca6e44f207da004e5780ddb5.tar.gz openbsd-5af30545c000c195ca6e44f207da004e5780ddb5.tar.bz2 openbsd-5af30545c000c195ca6e44f207da004e5780ddb5.zip |
move manual pages from doc/ to man/ for consistency with other
libraries, in particular considering that there are unrelated
files in doc/; requested by jsing@ and beck@
Diffstat (limited to 'src/lib/libssl/doc/SSL_get_version.3')
-rw-r--r-- | src/lib/libssl/doc/SSL_get_version.3 | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/libssl/doc/SSL_get_version.3 b/src/lib/libssl/doc/SSL_get_version.3 deleted file mode 100644 index ecfd005f12..0000000000 --- a/src/lib/libssl/doc/SSL_get_version.3 +++ /dev/null | |||
@@ -1,35 +0,0 @@ | |||
1 | .\" | ||
2 | .\" $OpenBSD: SSL_get_version.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ | ||
3 | .\" | ||
4 | .Dd $Mdocdate: December 2 2014 $ | ||
5 | .Dt SSL_GET_VERSION 3 | ||
6 | .Os | ||
7 | .Sh NAME | ||
8 | .Nm SSL_get_version | ||
9 | .Nd get the protocol version of a connection | ||
10 | .Sh SYNOPSIS | ||
11 | .In openssl/ssl.h | ||
12 | .Ft const char * | ||
13 | .Fn SSL_get_version "const SSL *ssl" | ||
14 | .Sh DESCRIPTION | ||
15 | .Fn SSL_get_version | ||
16 | returns the name of the protocol used for the connection | ||
17 | .Fa ssl . | ||
18 | .Sh RETURN VALUES | ||
19 | The following strings can be returned: | ||
20 | .Bl -tag -width Ds | ||
21 | .It Qq SSLv2 | ||
22 | The connection uses the SSLv2 protocol. | ||
23 | .It Qq SSLv3 | ||
24 | The connection uses the SSLv3 protocol. | ||
25 | .It Qq TLSv1 | ||
26 | The connection uses the TLSv1.0 protocol. | ||
27 | .It Qq TLSv1.1 | ||
28 | The connection uses the TLSv1.1 protocol. | ||
29 | .It Qq TLSv1.2 | ||
30 | The connection uses the TLSv1.2 protocol. | ||
31 | .It Qq unknown | ||
32 | This indicates that no version has been set (no connection established). | ||
33 | .El | ||
34 | .Sh SEE ALSO | ||
35 | .Xr ssl 3 | ||