Lines Matching refs:session
5 …add_session, SSL_add_session, SSL_CTX_remove_session, SSL_remove_session - manipulate session cache
19 SSL_CTX_add_session() adds the session B<c> to the context B<ctx>. The
20 reference count for session B<c> is incremented by 1. If a session with
21 the same session id already exists, the old session is removed by calling
24 SSL_CTX_remove_session() removes the session B<c> from the context B<ctx>.
32 When adding a new session to the internal session cache, it is examined
33 whether a session with the same session id already exists. In this case
34 it is assumed that both sessions are identical. If the same session is
35 stored in a different SSL_SESSION object, The old session is
36 removed and replaced by the new session. If the session is actually
43 cache will be searched automatically for session-resume requests (the
58 the same (identical) session twice. In case of the remove operation, the
59 session was not found in the cache.