Unix and Linux Discussions Tagged with timeout |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
5,905 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
2,702 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
17,647 |
AIX |
|
|
|
5 |
19,471 |
AIX |
|
|
|
7 |
18,778 |
Linux |
|
|
|
1 |
16,283 |
Red Hat |
|
|
|
12 |
34,132 |
Shell Programming and Scripting |
|
|
|
0 |
2,963 |
Shell Programming and Scripting |
|
|
|
3 |
3,236 |
Red Hat |
|
|
|
2 |
2,323 |
Shell Programming and Scripting |
|
|
|
2 |
12,888 |
Shell Programming and Scripting |
|
|
|
9 |
21,967 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
22,999 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,674 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
2,757 |
Shell Programming and Scripting |
|
|
|
7 |
9,841 |
Programming |
|
|
|
2 |
2,161 |
Shell Programming and Scripting |
|
|
|
14 |
27,438 |
Shell Programming and Scripting |
|
|
|
1 |
3,786 |
Programming |
|
|
|
7 |
14,900 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
8,665 |
Shell Programming and Scripting |
|
|
|
1 |
4,733 |
Shell Programming and Scripting |
|
|
|
1 |
14,387 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
12,003 |
Solaris |
|
|
|
1 |
8,761 |
Red Hat |
|
|
|
0 |
9,158 |
Shell Programming and Scripting |
|
|
|
1 |
7,359 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
0 |
9,952 |
Red Hat |
|
|
|
0 |
3,885 |
AIX |
|
|
|
3 |
122,593 |
Shell Programming and Scripting |
|
|
|
4 |
6,664 |
Filesystems, Disks and Memory |
|
|
|
6 |
50,028 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
5,545 |
IP Networking |
|
|
|
4 |
4,232 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,960 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
5,338 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
13,051 |
UNIX for Dummies Questions & Answers |
SSL_CTX_set_timeout(3) OpenSSL SSL_CTX_set_timeout(3)
NAME
SSL_CTX_set_timeout, SSL_CTX_get_timeout - manipulate timeout values for session caching
SYNOPSIS
#include <openssl/ssl.h>
long SSL_CTX_set_timeout(SSL_CTX *ctx, long t);
long SSL_CTX_get_timeout(SSL_CTX *ctx);
DESCRIPTION
SSL_CTX_set_timeout() sets the timeout for newly created sessions for ctx to t. The timeout value t must be given in seconds.
SSL_CTX_get_timeout() returns the currently set timeout value for ctx.
NOTES
Whenever a new session is created, it is assigned a maximum lifetime. This lifetime is specified by storing the creation time of the
session and the timeout value valid at this time. If the actual time is later than creation time plus timeout, the session is not reused.
Due to this realization, all sessions behave according to the timeout value valid at the time of the session negotiation. Changes of the
timeout value do not affect already established sessions.
The expiration time of a single session can be modified using the SSL_SESSION_get_time(3) family of functions.
Expired sessions are removed from the internal session cache, whenever SSL_CTX_flush_sessions(3) is called, either directly by the
application or automatically (see SSL_CTX_set_session_cache_mode(3))
The default value for session timeout is decided on a per protocol basis, see SSL_get_default_timeout(3). All currently supported
protocols have the same default timeout value of 300 seconds.
RETURN VALUES
SSL_CTX_set_timeout() returns the previously set timeout value.
SSL_CTX_get_timeout() returns the currently set timeout value.
SEE ALSO
ssl(3), SSL_CTX_set_session_cache_mode(3), SSL_SESSION_get_time(3), SSL_CTX_flush_sessions(3), SSL_get_default_timeout(3)
1.0.1e 2013-02-11 SSL_CTX_set_timeout(3)