Skip to content

Commit

Permalink
Clarify reference count handling/removal of session
Browse files Browse the repository at this point in the history
(shinagawa@star.zko.dec.com).
  • Loading branch information
Lutz Jänicke committed Nov 19, 2001
1 parent 9d93ce2 commit a7ce69d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/ssl/SSL_get_session.pod
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ if the session is valid, it can be removed at any time due to timeout
during L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)>.

If the data is to be kept, SSL_get1_session() will increment the reference
count and the session will stay in memory until explicitly freed with
L<SSL_SESSION_free(3)|SSL_SESSION_free(3)>, regardless of its state.
count, so that the session will not be implicitly removed by other operations
but stays in memory. In order to remove the session
L<SSL_SESSION_free(3)|SSL_SESSION_free(3)> must be explicitly called once
to decrement the reference count again.

SSL_SESSION objects keep internal link information about the session cache
list, when being inserted into one SSL_CTX object's session cache.
Expand Down

0 comments on commit a7ce69d

Please sign in to comment.