]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/SSL_set_session.pod
Update copyright year
[thirdparty/openssl.git] / doc / man3 / SSL_set_session.pod
CommitLineData
cc99526d
RL
1=pod
2
3=head1 NAME
4
1e4e5492 5SSL_set_session - set a TLS/SSL session to be used during TLS/SSL connect
cc99526d
RL
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
c6def253 11 int SSL_set_session(SSL *ssl, SSL_SESSION *session);
cc99526d
RL
12
13=head1 DESCRIPTION
14
1e4e5492
UM
15SSL_set_session() sets B<session> to be used when the TLS/SSL connection
16is to be established. SSL_set_session() is only useful for TLS/SSL clients.
cc99526d
RL
17When the session is set, the reference count of B<session> is incremented
18by 1. If the session is not reused, the reference count is decremented
2d3b6a5b 19again during SSL_connect(). Whether the session was reused can be queried
9b86974e 20with the L<SSL_session_reused(3)> call.
cc99526d
RL
21
22If there is already a session set inside B<ssl> (because it was set with
23SSL_set_session() before or because the same B<ssl> was already used for
ec02df83
MC
24a connection), SSL_SESSION_free() will be called for that session. If that old
25session is still B<open>, it is considered bad and will be removed from the
26session cache (if used). A session is considered open, if L<SSL_shutdown(3)> was
27not called for the connection (or at least L<SSL_set_shutdown(3)> was used to
28set the SSL_SENT_SHUTDOWN state).
cc99526d 29
56fa8e69
LJ
30=head1 NOTES
31
32SSL_SESSION objects keep internal link information about the session cache
33list, when being inserted into one SSL_CTX object's session cache.
34One SSL_SESSION object, regardless of its reference count, must therefore
35only be used with one SSL_CTX object (and the SSL objects created
36from this SSL_CTX object).
37
cc99526d
RL
38=head1 RETURN VALUES
39
40The following return values can occur:
41
42=over 4
43
c8919dde 44=item Z<>0
cc99526d 45
1e4e5492 46The operation failed; check the error stack to find out the reason.
cc99526d 47
c8919dde 48=item Z<>1
cc99526d
RL
49
50The operation succeeded.
51
52=back
53
54=head1 SEE ALSO
55
b97fdb57 56L<ssl(7)>, L<SSL_SESSION_free(3)>,
9b86974e
RS
57L<SSL_get_session(3)>,
58L<SSL_session_reused(3)>,
59L<SSL_CTX_set_session_cache_mode(3)>
cc99526d 60
e2f92610
RS
61=head1 COPYRIGHT
62
63Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
64
65Licensed under the OpenSSL license (the "License"). You may not use
66this file except in compliance with the License. You can obtain a copy
67in the file LICENSE in the source distribution or at
68L<https://www.openssl.org/source/license.html>.
69
70=cut