X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=doc%2Fssl%2FSSL_get_session.pod;h=0c41caa922ab3ebcf68d67711e036563ef522ec1;hb=f0288f05b92c3c206a515691f548b857f6aaa194;hp=8547faa58b5d3e0bf707736b0ac885c160cf33fe;hpb=56fa8e69cf1e742da8087de60152519127c79983;p=oweals%2Fopenssl.git diff --git a/doc/ssl/SSL_get_session.pod b/doc/ssl/SSL_get_session.pod index 8547faa58b..0c41caa922 100644 --- a/doc/ssl/SSL_get_session.pod +++ b/doc/ssl/SSL_get_session.pod @@ -8,8 +8,8 @@ SSL_get_session - retrieve TLS/SSL session data #include - SSL_SESSION *SSL_get_session(SSL *ssl); - SSL_SESSION *SSL_get0_session(SSL *ssl); + SSL_SESSION *SSL_get_session(const SSL *ssl); + SSL_SESSION *SSL_get0_session(const SSL *ssl); SSL_SESSION *SSL_get1_session(SSL *ssl); =head1 DESCRIPTION @@ -37,8 +37,10 @@ if the session is valid, it can be removed at any time due to timeout during L. 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, 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 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.