Allow IPv6 address entry in tools>ping - Loosens valid character check
[tomato/davidwu.git] / release / src / router / openssl / doc / ssl / SSL_get_default_timeout.pod
bloba648a9b82df606592f4eaf04a92d9ad1eae35f80
1 =pod
3 =head1 NAME
5 SSL_get_default_timeout - get default session timeout value
7 =head1 SYNOPSIS
9  #include <openssl/ssl.h>
11  long SSL_get_default_timeout(const SSL *ssl);
13 =head1 DESCRIPTION
15 SSL_get_default_timeout() returns the default timeout value assigned to
16 SSL_SESSION objects negotiated for the protocol valid for B<ssl>.
18 =head1 NOTES
20 Whenever a new session is negotiated, it is assigned a timeout value,
21 after which it will not be accepted for session reuse. If the timeout
22 value was not explicitly set using
23 L<SSL_CTX_set_timeout(3)|SSL_CTX_set_timeout(3)>, the hardcoded default
24 timeout for the protocol will be used.
26 SSL_get_default_timeout() return this hardcoded value, which is 300 seconds
27 for all currently supported protocols (SSLv2, SSLv3, and TLSv1).
29 =head1 RETURN VALUES
31 See description.
33 =head1 SEE ALSO
35 L<ssl(3)|ssl(3)>,
36 L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>,
37 L<SSL_SESSION_get_time(3)|SSL_SESSION_get_time(3)>,
38 L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)>,
39 L<SSL_get_default_timeout(3)|SSL_get_default_timeout(3)>
41 =cut