Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Ulf Möller | 1e4e549 | 2000-09-16 15:39:28 +0000 | [diff] [blame] | 5 | SSL_set_session - set a TLS/SSL session to be used during TLS/SSL connect |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 6 | |
| 7 | =head1 SYNOPSIS |
| 8 | |
| 9 | #include <openssl/ssl.h> |
| 10 | |
Richard Levitte | c6def25 | 2000-09-19 23:11:42 +0000 | [diff] [blame] | 11 | int SSL_set_session(SSL *ssl, SSL_SESSION *session); |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 12 | |
| 13 | =head1 DESCRIPTION |
| 14 | |
Ulf Möller | 1e4e549 | 2000-09-16 15:39:28 +0000 | [diff] [blame] | 15 | SSL_set_session() sets B<session> to be used when the TLS/SSL connection |
| 16 | is to be established. SSL_set_session() is only useful for TLS/SSL clients. |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 17 | When the session is set, the reference count of B<session> is incremented |
| 18 | by 1. If the session is not reused, the reference count is decremented |
Lutz Jänicke | 2d3b6a5 | 2001-07-20 18:57:15 +0000 | [diff] [blame] | 19 | again during SSL_connect(). Whether the session was reused can be queried |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 20 | with the L<SSL_session_reused(3)> call. |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 21 | |
| 22 | If there is already a session set inside B<ssl> (because it was set with |
| 23 | SSL_set_session() before or because the same B<ssl> was already used for |
Matt Caswell | ec02df8 | 2016-06-09 13:46:34 +0100 | [diff] [blame] | 24 | a connection), SSL_SESSION_free() will be called for that session. If that old |
| 25 | session is still B<open>, it is considered bad and will be removed from the |
| 26 | session cache (if used). A session is considered open, if L<SSL_shutdown(3)> was |
| 27 | not called for the connection (or at least L<SSL_set_shutdown(3)> was used to |
| 28 | set the SSL_SENT_SHUTDOWN state). |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 29 | |
Lutz Jänicke | 56fa8e6 | 2001-10-12 12:29:16 +0000 | [diff] [blame] | 30 | =head1 NOTES |
| 31 | |
| 32 | SSL_SESSION objects keep internal link information about the session cache |
| 33 | list, when being inserted into one SSL_CTX object's session cache. |
| 34 | One SSL_SESSION object, regardless of its reference count, must therefore |
| 35 | only be used with one SSL_CTX object (and the SSL objects created |
| 36 | from this SSL_CTX object). |
| 37 | |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 38 | =head1 RETURN VALUES |
| 39 | |
| 40 | The following return values can occur: |
| 41 | |
| 42 | =over 4 |
| 43 | |
Lubomir Rintel | c8919dd | 2013-10-21 11:03:01 +0200 | [diff] [blame] | 44 | =item Z<>0 |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 45 | |
Ulf Möller | 1e4e549 | 2000-09-16 15:39:28 +0000 | [diff] [blame] | 46 | The operation failed; check the error stack to find out the reason. |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 47 | |
Lubomir Rintel | c8919dd | 2013-10-21 11:03:01 +0200 | [diff] [blame] | 48 | =item Z<>1 |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 49 | |
| 50 | The operation succeeded. |
| 51 | |
| 52 | =back |
| 53 | |
| 54 | =head1 SEE ALSO |
| 55 | |
Richard Levitte | b97fdb5 | 2016-11-11 09:33:09 +0100 | [diff] [blame] | 56 | L<ssl(7)>, L<SSL_SESSION_free(3)>, |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 57 | L<SSL_get_session(3)>, |
| 58 | L<SSL_session_reused(3)>, |
| 59 | L<SSL_CTX_set_session_cache_mode(3)> |
Richard Levitte | cc99526 | 2000-09-14 13:11:56 +0000 | [diff] [blame] | 60 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 61 | =head1 COPYRIGHT |
| 62 | |
| 63 | Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. |
| 64 | |
| 65 | Licensed under the OpenSSL license (the "License"). You may not use |
| 66 | this file except in compliance with the License. You can obtain a copy |
| 67 | in the file LICENSE in the source distribution or at |
| 68 | L<https://www.openssl.org/source/license.html>. |
| 69 | |
| 70 | =cut |