]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/SSL_CTX_set_timeout.pod
Following the license change, modify the boilerplates in doc/man3/
[thirdparty/openssl.git] / doc / man3 / SSL_CTX_set_timeout.pod
CommitLineData
0bc6597d
LJ
1=pod
2
3=head1 NAME
4
5SSL_CTX_set_timeout, SSL_CTX_get_timeout - manipulate timeout values for session caching
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
12 long SSL_CTX_get_timeout(SSL_CTX *ctx);
13
14=head1 DESCRIPTION
15
16SSL_CTX_set_timeout() sets the timeout for newly created sessions for
17B<ctx> to B<t>. The timeout value B<t> must be given in seconds.
18
19SSL_CTX_get_timeout() returns the currently set timeout value for B<ctx>.
20
21=head1 NOTES
22
23Whenever a new session is created, it is assigned a maximum lifetime. This
24lifetime is specified by storing the creation time of the session and the
25timeout value valid at this time. If the actual time is later than creation
26time plus timeout, the session is not reused.
27
28Due to this realization, all sessions behave according to the timeout value
29valid at the time of the session negotiation. Changes of the timeout value
30do not affect already established sessions.
31
32The expiration time of a single session can be modified using the
9b86974e 33L<SSL_SESSION_get_time(3)> family of functions.
0bc6597d
LJ
34
35Expired sessions are removed from the internal session cache, whenever
9b86974e 36L<SSL_CTX_flush_sessions(3)> is called, either
0bc6597d 37directly by the application or automatically (see
9b86974e 38L<SSL_CTX_set_session_cache_mode(3)>)
0bc6597d 39
52129c0b 40The default value for session timeout is decided on a per protocol
9b86974e 41basis, see L<SSL_get_default_timeout(3)>.
52129c0b
LJ
42All currently supported protocols have the same default timeout value
43of 300 seconds.
0bc6597d
LJ
44
45=head1 RETURN VALUES
46
47SSL_CTX_set_timeout() returns the previously set timeout value.
48
49SSL_CTX_get_timeout() returns the currently set timeout value.
50
51=head1 SEE ALSO
52
b97fdb57 53L<ssl(7)>,
9b86974e
RS
54L<SSL_CTX_set_session_cache_mode(3)>,
55L<SSL_SESSION_get_time(3)>,
56L<SSL_CTX_flush_sessions(3)>,
57L<SSL_get_default_timeout(3)>
0bc6597d 58
e2f92610
RS
59=head1 COPYRIGHT
60
61Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
62
4746f25a 63Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
64this file except in compliance with the License. You can obtain a copy
65in the file LICENSE in the source distribution or at
66L<https://www.openssl.org/source/license.html>.
67
68=cut