]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/SSL_CTX_add_session.pod
Fix referenses in section 3 manuals
[thirdparty/openssl.git] / doc / man3 / SSL_CTX_add_session.pod
CommitLineData
0bc6597d
LJ
1=pod
2
3=head1 NAME
4
5SSL_CTX_add_session, SSL_add_session, SSL_CTX_remove_session, SSL_remove_session - manipulate session cache
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *c);
12 int SSL_add_session(SSL_CTX *ctx, SSL_SESSION *c);
13
14 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c);
15 int SSL_remove_session(SSL_CTX *ctx, SSL_SESSION *c);
16
17=head1 DESCRIPTION
18
19SSL_CTX_add_session() adds the session B<c> to the context B<ctx>. The
20reference count for session B<c> is incremented by 1. If a session with
21the same session id already exists, the old session is removed by calling
9b86974e 22L<SSL_SESSION_free(3)>.
0bc6597d
LJ
23
24SSL_CTX_remove_session() removes the session B<c> from the context B<ctx>.
9b86974e 25L<SSL_SESSION_free(3)> is called once for B<c>.
0bc6597d
LJ
26
27SSL_add_session() and SSL_remove_session() are synonyms for their
28SSL_CTX_*() counterparts.
29
30=head1 NOTES
31
32When adding a new session to the internal session cache, it is examined
33whether a session with the same session id already exists. In this case
34it is assumed that both sessions are identical. If the same session is
35stored in a different SSL_SESSION object, The old session is
36removed and replaced by the new session. If the session is actually
37identical (the SSL_SESSION object is identical), SSL_CTX_add_session()
38is a no-op, and the return value is 0.
39
e0db2eed
GT
40If a server SSL_CTX is configured with the SSL_SESS_CACHE_NO_INTERNAL_STORE
41flag then the internal cache will not be populated automatically by new
42sessions negotiated by the SSL/TLS implementation, even though the internal
43cache will be searched automatically for session-resume requests (the
fc1d88f0 44latter can be suppressed by SSL_SESS_CACHE_NO_INTERNAL_LOOKUP). So the
e0db2eed
GT
45application can use SSL_CTX_add_session() directly to have full control
46over the sessions that can be resumed if desired.
47
0bc6597d
LJ
48
49=head1 RETURN VALUES
50
51The following values are returned by all functions:
52
53=over 4
54
c8919dde 55=item Z<>0
0bc6597d
LJ
56
57 The operation failed. In case of the add operation, it was tried to add
58 the same (identical) session twice. In case of the remove operation, the
59 session was not found in the cache.
60
c8919dde 61=item Z<>1
1bc74519 62
0bc6597d
LJ
63 The operation succeeded.
64
65=back
66
67=head1 SEE ALSO
68
b97fdb57 69L<ssl(7)>,
9b86974e
RS
70L<SSL_CTX_set_session_cache_mode(3)>,
71L<SSL_SESSION_free(3)>
0bc6597d 72
e2f92610
RS
73=head1 COPYRIGHT
74
75Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
76
77Licensed under the OpenSSL license (the "License"). You may not use
78this file except in compliance with the License. You can obtain a copy
79in the file LICENSE in the source distribution or at
80L<https://www.openssl.org/source/license.html>.
81
82=cut