2000-09-14 21:11:56 +08:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2000-09-16 23:39:28 +08:00
|
|
|
SSL_set_session - set a TLS/SSL session to be used during TLS/SSL connect
|
2000-09-14 21:11:56 +08:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2000-09-20 07:11:42 +08:00
|
|
|
int SSL_set_session(SSL *ssl, SSL_SESSION *session);
|
2000-09-14 21:11:56 +08:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2000-09-16 23:39:28 +08:00
|
|
|
SSL_set_session() sets B<session> to be used when the TLS/SSL connection
|
|
|
|
is to be established. SSL_set_session() is only useful for TLS/SSL clients.
|
2000-09-14 21:11:56 +08:00
|
|
|
When the session is set, the reference count of B<session> is incremented
|
|
|
|
by 1. If the session is not reused, the reference count is decremented
|
2001-07-21 02:57:15 +08:00
|
|
|
again during SSL_connect(). Whether the session was reused can be queried
|
2015-08-18 03:21:33 +08:00
|
|
|
with the L<SSL_session_reused(3)> call.
|
2000-09-14 21:11:56 +08:00
|
|
|
|
|
|
|
If there is already a session set inside B<ssl> (because it was set with
|
|
|
|
SSL_set_session() before or because the same B<ssl> was already used for
|
2016-06-09 20:46:34 +08:00
|
|
|
a connection), SSL_SESSION_free() will be called for that session. If that old
|
|
|
|
session is still B<open>, it is considered bad and will be removed from the
|
|
|
|
session cache (if used). A session is considered open, if L<SSL_shutdown(3)> was
|
|
|
|
not called for the connection (or at least L<SSL_set_shutdown(3)> was used to
|
|
|
|
set the SSL_SENT_SHUTDOWN state).
|
2000-09-14 21:11:56 +08:00
|
|
|
|
2001-10-12 20:29:16 +08:00
|
|
|
=head1 NOTES
|
|
|
|
|
|
|
|
SSL_SESSION objects keep internal link information about the session cache
|
|
|
|
list, when being inserted into one SSL_CTX object's session cache.
|
|
|
|
One SSL_SESSION object, regardless of its reference count, must therefore
|
|
|
|
only be used with one SSL_CTX object (and the SSL objects created
|
|
|
|
from this SSL_CTX object).
|
|
|
|
|
2000-09-14 21:11:56 +08:00
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
|
|
|
The following return values can occur:
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2013-10-21 17:03:01 +08:00
|
|
|
=item Z<>0
|
2000-09-14 21:11:56 +08:00
|
|
|
|
2000-09-16 23:39:28 +08:00
|
|
|
The operation failed; check the error stack to find out the reason.
|
2000-09-14 21:11:56 +08:00
|
|
|
|
2013-10-21 17:03:01 +08:00
|
|
|
=item Z<>1
|
2000-09-14 21:11:56 +08:00
|
|
|
|
|
|
|
The operation succeeded.
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2016-11-11 16:33:09 +08:00
|
|
|
L<ssl(7)>, L<SSL_SESSION_free(3)>,
|
2015-08-18 03:21:33 +08:00
|
|
|
L<SSL_get_session(3)>,
|
|
|
|
L<SSL_session_reused(3)>,
|
|
|
|
L<SSL_CTX_set_session_cache_mode(3)>
|
2000-09-14 21:11:56 +08:00
|
|
|
|
2016-05-18 23:44:05 +08:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
|
2018-12-06 21:04:44 +08:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 23:44:05 +08:00
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|