]> git.ipfire.org Git - thirdparty/openssl.git/blame_incremental - doc/man3/SSL_SESSION_free.pod
Move PRIu64, OSSLzu to e_os.h
[thirdparty/openssl.git] / doc / man3 / SSL_SESSION_free.pod
... / ...
CommitLineData
1=pod
2
3=head1 NAME
4
5SSL_SESSION_free - free an allocated SSL_SESSION structure
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_SESSION_free(SSL_SESSION *session);
12
13=head1 DESCRIPTION
14
15SSL_SESSION_free() decrements the reference count of B<session> and removes
16the B<SSL_SESSION> structure pointed to by B<session> and frees up the allocated
17memory, if the reference count has reached 0.
18If B<session> is NULL nothing is done.
19
20=head1 NOTES
21
22SSL_SESSION objects are allocated, when a TLS/SSL handshake operation
23is successfully completed. Depending on the settings, see
24L<SSL_CTX_set_session_cache_mode(3)>,
25the SSL_SESSION objects are internally referenced by the SSL_CTX and
26linked into its session cache. SSL objects may be using the SSL_SESSION object;
27as a session may be reused, several SSL objects may be using one SSL_SESSION
28object at the same time. It is therefore crucial to keep the reference
29count (usage information) correct and not delete a SSL_SESSION object
30that is still used, as this may lead to program failures due to
31dangling pointers. These failures may also appear delayed, e.g.
32when an SSL_SESSION object was completely freed as the reference count
33incorrectly became 0, but it is still referenced in the internal
34session cache and the cache list is processed during a
35L<SSL_CTX_flush_sessions(3)> operation.
36
37SSL_SESSION_free() must only be called for SSL_SESSION objects, for
38which the reference count was explicitly incremented (e.g.
39by calling SSL_get1_session(), see L<SSL_get_session(3)>)
40or when the SSL_SESSION object was generated outside a TLS handshake
41operation, e.g. by using L<d2i_SSL_SESSION(3)>.
42It must not be called on other SSL_SESSION objects, as this would cause
43incorrect reference counts and therefore program failures.
44
45=head1 RETURN VALUES
46
47SSL_SESSION_free() does not provide diagnostic information.
48
49=head1 SEE ALSO
50
51L<ssl(7)>, L<SSL_get_session(3)>,
52L<SSL_CTX_set_session_cache_mode(3)>,
53L<SSL_CTX_flush_sessions(3)>,
54L<d2i_SSL_SESSION(3)>
55
56=head1 COPYRIGHT
57
58Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
59
60Licensed under the OpenSSL license (the "License"). You may not use
61this file except in compliance with the License. You can obtain a copy
62in the file LICENSE in the source distribution or at
63L<https://www.openssl.org/source/license.html>.
64
65=cut