1SSL_CTX_set_timeout(3) OpenSSL SSL_CTX_set_timeout(3)
2
3
4
6 SSL_CTX_set_timeout, SSL_CTX_get_timeout - manipulate timeout values
7 for session caching
8
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
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
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
43 SSL_CTX_set_timeout() returns the previously set timeout value.
44
45 SSL_CTX_get_timeout() returns the currently set timeout value.
46
48 ssl(3), SSL_CTX_set_session_cache_mode(3), SSL_SESSION_get_time(3),
49 SSL_CTX_flush_sessions(3), SSL_get_default_timeout(3)
50
51
52
531.0.2o 2020-01-28 SSL_CTX_set_timeout(3)