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_default_timeout.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_default_timeout.3')
-rw-r--r-- | src/lib/libssl/doc/SSL_get_default_timeout.3 | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/lib/libssl/doc/SSL_get_default_timeout.3 b/src/lib/libssl/doc/SSL_get_default_timeout.3 deleted file mode 100644 index 1a58e87f27..0000000000 --- a/src/lib/libssl/doc/SSL_get_default_timeout.3 +++ /dev/null | |||
@@ -1,36 +0,0 @@ | |||
1 | .\" | ||
2 | .\" $OpenBSD: SSL_get_default_timeout.3,v 1.2 2014/12/02 14:11:01 jmc Exp $ | ||
3 | .\" | ||
4 | .Dd $Mdocdate: December 2 2014 $ | ||
5 | .Dt SSL_GET_DEFAULT_TIMEOUT 3 | ||
6 | .Os | ||
7 | .Sh NAME | ||
8 | .Nm SSL_get_default_timeout | ||
9 | .Nd get default session timeout value | ||
10 | .Sh SYNOPSIS | ||
11 | .In openssl/ssl.h | ||
12 | .Ft long | ||
13 | .Fn SSL_get_default_timeout "const SSL *ssl" | ||
14 | .Sh DESCRIPTION | ||
15 | .Fn SSL_get_default_timeout | ||
16 | returns the default timeout value assigned to | ||
17 | .Vt SSL_SESSION | ||
18 | objects negotiated for the protocol valid for | ||
19 | .Fa ssl . | ||
20 | .Sh NOTES | ||
21 | Whenever a new session is negotiated, it is assigned a timeout value, | ||
22 | after which it will not be accepted for session reuse. | ||
23 | If the timeout value was not explicitly set using | ||
24 | .Xr SSL_CTX_set_timeout 3 , | ||
25 | the hardcoded default timeout for the protocol will be used. | ||
26 | .Pp | ||
27 | .Fn SSL_get_default_timeout | ||
28 | return this hardcoded value, which is 300 seconds for all currently supported | ||
29 | protocols (SSLv2, SSLv3, and TLSv1). | ||
30 | .Sh RETURN VALUES | ||
31 | See description. | ||
32 | .Sh SEE ALSO | ||
33 | .Xr ssl 3 , | ||
34 | .Xr SSL_CTX_flush_sessions 3 , | ||
35 | .Xr SSL_CTX_set_session_cache_mode 3 , | ||
36 | .Xr SSL_SESSION_get_time 3 | ||