1SSL_CTX_SET_TIMEOUT(3)              OpenSSL             SSL_CTX_SET_TIMEOUT(3)
2
3
4

NAME

6       SSL_CTX_set_timeout, SSL_CTX_get_timeout - manipulate timeout values
7       for session caching
8

SYNOPSIS

10        #include <openssl/ssl.h>
11
12        long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
13        long SSL_CTX_get_timeout(SSL_CTX *ctx);
14

DESCRIPTION

16       SSL_CTX_set_timeout() sets the timeout for newly created sessions for
17       ctx to t. The timeout value t must be given in seconds.
18
19       SSL_CTX_get_timeout() returns the currently set timeout value for ctx.
20

NOTES

22       Whenever a new session is created, it is assigned a maximum lifetime.
23       This lifetime is specified by storing the creation time of the session
24       and the timeout value valid at this time. If the actual time is later
25       than creation time plus timeout, the session is not reused.
26
27       Due to this realization, all sessions behave according to the timeout
28       value valid at the time of the session negotiation. Changes of the
29       timeout value do not affect already established sessions.
30
31       The expiration time of a single session can be modified using the
32       SSL_SESSION_get_time(3) family of functions.
33
34       Expired sessions are removed from the internal session cache, whenever
35       SSL_CTX_flush_sessions(3) is called, either directly by the application
36       or automatically (see SSL_CTX_set_session_cache_mode(3))
37
38       The default value for session timeout is decided on a per protocol
39       basis, see SSL_get_default_timeout(3).  All currently supported
40       protocols have the same default timeout value of 300 seconds.
41

RETURN VALUES

43       SSL_CTX_set_timeout() returns the previously set timeout value.
44
45       SSL_CTX_get_timeout() returns the currently set timeout value.
46

SEE ALSO

48       ssl(7), SSL_CTX_set_session_cache_mode(3), SSL_SESSION_get_time(3),
49       SSL_CTX_flush_sessions(3), SSL_get_default_timeout(3)
50
52       Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
53
54       Licensed under the OpenSSL license (the "License").  You may not use
55       this file except in compliance with the License.  You can obtain a copy
56       in the file LICENSE in the source distribution or at
57       <https://www.openssl.org/source/license.html>.
58
59
60
611.1.1                             2018-09-11            SSL_CTX_SET_TIMEOUT(3)
Impressum