Last change
on this file since 91772 was 91772, checked in by vboxsync, 3 years ago |
openssl-1.1.1l: Applied and adjusted our OpenSSL changes to 1.1.1l. bugref:10126
|
File size:
1.2 KB
|
Line | |
---|
1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | SSL_get_default_timeout - get default session timeout value
|
---|
6 |
|
---|
7 | =head1 SYNOPSIS
|
---|
8 |
|
---|
9 | #include <openssl/ssl.h>
|
---|
10 |
|
---|
11 | long SSL_get_default_timeout(const SSL *ssl);
|
---|
12 |
|
---|
13 | =head1 DESCRIPTION
|
---|
14 |
|
---|
15 | SSL_get_default_timeout() returns the default timeout value assigned to
|
---|
16 | SSL_SESSION objects negotiated for the protocol valid for B<ssl>.
|
---|
17 |
|
---|
18 | =head1 NOTES
|
---|
19 |
|
---|
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)>, the hardcoded default
|
---|
24 | timeout for the protocol will be used.
|
---|
25 |
|
---|
26 | SSL_get_default_timeout() return this hardcoded value, which is 300 seconds
|
---|
27 | for all currently supported protocols.
|
---|
28 |
|
---|
29 | =head1 RETURN VALUES
|
---|
30 |
|
---|
31 | See description.
|
---|
32 |
|
---|
33 | =head1 SEE ALSO
|
---|
34 |
|
---|
35 | L<ssl(7)>,
|
---|
36 | L<SSL_CTX_set_session_cache_mode(3)>,
|
---|
37 | L<SSL_SESSION_get_time(3)>,
|
---|
38 | L<SSL_CTX_flush_sessions(3)>,
|
---|
39 | L<SSL_get_default_timeout(3)>
|
---|
40 |
|
---|
41 | =head1 COPYRIGHT
|
---|
42 |
|
---|
43 | Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
|
---|
44 |
|
---|
45 | Licensed under the OpenSSL license (the "License"). You may not use
|
---|
46 | this file except in compliance with the License. You can obtain a copy
|
---|
47 | in the file LICENSE in the source distribution or at
|
---|
48 | L<https://www.openssl.org/source/license.html>.
|
---|
49 |
|
---|
50 | =cut
|
---|
Note:
See
TracBrowser
for help on using the repository browser.