Lines Matching full:session

64 SSL_get_session, SSL_get0_session, SSL_get1_session \- retrieve TLS/SSL session data
86 The ssl session contains all information required to re-establish the
89 main handshake has occurred. The server will send the session information to the
92 in TLSv1.3 before the session has been established will still return an
93 SSL_SESSION object but that object cannot be used for resuming the session. See
98 session for a single connection. In that case, on the client side, the above
99 functions will only return information on the last session that was received. On
100 the server side they will only return information on the last session that was
101 sent, or if no session tickets were sent then the session for the current
105 to use a new session callback as described in \fBSSL_CTX_sess_set_new_cb\fR\|(3).
106 The new session callback is only invoked when a session is actually established,
112 A session will be automatically removed from the session cache and marked as
120 \&\fBSSL_get0_session()\fR returns a pointer to the actual session. As the
123 \&\fBSSL_free\fR\|(3) is called, the session may be removed completely
125 if the session is valid, it can be removed at any time due to timeout
129 count, so that the session will not be implicitly removed by other operations
130 but stays in memory. In order to remove the session
134 SSL_SESSION objects keep internal link information about the session cache
135 list, when being inserted into one SSL_CTX object's session cache.
144 There is no session available in \fBssl\fR.
147 The return value points to the data of an SSL session.