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_session_reused.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_session_reused.3')
-rw-r--r-- | src/lib/libssl/doc/SSL_session_reused.3 | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/lib/libssl/doc/SSL_session_reused.3 b/src/lib/libssl/doc/SSL_session_reused.3 deleted file mode 100644 index 6ea45f749b..0000000000 --- a/src/lib/libssl/doc/SSL_session_reused.3 +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | .\" | ||
2 | .\" $OpenBSD: SSL_session_reused.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ | ||
3 | .\" | ||
4 | .Dd $Mdocdate: December 2 2014 $ | ||
5 | .Dt SSL_SESSION_REUSED 3 | ||
6 | .Os | ||
7 | .Sh NAME | ||
8 | .Nm SSL_session_reused | ||
9 | .Nd query whether a reused session was negotiated during handshake | ||
10 | .Sh SYNOPSIS | ||
11 | .In openssl/ssl.h | ||
12 | .Ft int | ||
13 | .Fn SSL_session_reused "SSL *ssl" | ||
14 | .Sh DESCRIPTION | ||
15 | Query whether a reused session was negotiated during the handshake. | ||
16 | .Sh NOTES | ||
17 | During the negotiation, a client can propose to reuse a session. | ||
18 | The server then looks up the session in its cache. | ||
19 | If both client and server agree on the session, | ||
20 | it will be reused and a flag is set that can be queried by the application. | ||
21 | .Sh RETURN VALUES | ||
22 | The following return values can occur: | ||
23 | .Bl -tag -width Ds | ||
24 | .It 0 | ||
25 | A new session was negotiated. | ||
26 | .It 1 | ||
27 | A session was reused. | ||
28 | .El | ||
29 | .Sh SEE ALSO | ||
30 | .Xr ssl 3 , | ||
31 | .Xr SSL_CTX_set_session_cache_mode 3 , | ||
32 | .Xr SSL_set_session 3 | ||