Deleted Added
sdiff udiff text old ( 72613 ) new ( 89837 )
full compact
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

--- 23 unchanged lines hidden (view full) ---

32The expiration time of a single session can be modified using the
33L<SSL_SESSION_get_time(3)|SSL_SESSION_get_time(3)> family of functions.
34
35Expired sessions are removed from the internal session cache, whenever
36L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)> is called, either
37directly by the application or automatically (see
38L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>)
39
40The default value for session timeout is 300 seconds.
41
42=head1 RETURN VALUES
43
44SSL_CTX_set_timeout() returns the previously set timeout value.
45
46SSL_CTX_get_timeout() returns the currently set timeout value.
47
48=head1 SEE ALSO
49
50L<ssl(3)|ssl(3)>,
51L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>,
52L<SSL_SESSION_get_time(3)|SSL_SESSION_get_time(3)>,
53L
54
55=cut