2001-08-17 16:36:51 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
SSL_get_default_timeout - get default session timeout value
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2005-03-30 11:50:14 +00:00
|
|
|
long SSL_get_default_timeout(const SSL *ssl);
|
2001-08-17 16:36:51 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
SSL_get_default_timeout() returns the default timeout value assigned to
|
|
|
|
SSL_SESSION objects negotiated for the protocol valid for B<ssl>.
|
|
|
|
|
|
|
|
=head1 NOTES
|
|
|
|
|
|
|
|
Whenever a new session is negotiated, it is assigned a timeout value,
|
|
|
|
after which it will not be accepted for session reuse. If the timeout
|
|
|
|
value was not explicitly set using
|
2015-08-17 19:21:33 +00:00
|
|
|
L<SSL_CTX_set_timeout(3)>, the hardcoded default
|
2001-08-17 16:36:51 +00:00
|
|
|
timeout for the protocol will be used.
|
|
|
|
|
|
|
|
SSL_get_default_timeout() return this hardcoded value, which is 300 seconds
|
2014-11-30 14:35:22 +00:00
|
|
|
for all currently supported protocols.
|
2001-08-17 16:36:51 +00:00
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
|
|
|
See description.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2015-08-17 19:21:33 +00:00
|
|
|
L<ssl(3)>,
|
|
|
|
L<SSL_CTX_set_session_cache_mode(3)>,
|
|
|
|
L<SSL_SESSION_get_time(3)>,
|
|
|
|
L<SSL_CTX_flush_sessions(3)>,
|
|
|
|
L<SSL_get_default_timeout(3)>
|
2001-08-17 16:36:51 +00:00
|
|
|
|
|
|
|
=cut
|