Lines Matching refs:session
5 SSL_get_session, SSL_get0_session, SSL_get1_session - retrieve TLS/SSL session data
28 The ssl session contains all information required to re-establish the
31 main handshake has occurred. The server will send the session information to the
34 in TLSv1.3 before the session has been established will still return an
35 SSL_SESSION object but that object cannot be used for resuming the session. See
40 session for a single connection. In that case, on the client side, the above
41 functions will only return information on the last session that was received. On
42 the server side they will only return information on the last session that was
43 sent, or if no session tickets were sent then the session for the current
47 to use a new session callback as described in L<SSL_CTX_sess_set_new_cb(3)>.
48 The new session callback is only invoked when a session is actually established,
54 A session will be automatically removed from the session cache and marked as
62 SSL_get0_session() returns a pointer to the actual session. As the
65 L<SSL_free(3)> is called, the session may be removed completely
67 if the session is valid, it can be removed at any time due to timeout
71 count, so that the session will not be implicitly removed by other operations
72 but stays in memory. In order to remove the session
76 SSL_SESSION objects keep internal link information about the session cache
77 list, when being inserted into one SSL_CTX object's session cache.
90 There is no session available in B<ssl>.
94 The return value points to the data of an SSL session.