Home
last modified time | relevance | path

Searched refs:remove_session_cb (Results 1 – 5 of 5) sorted by relevance

/onnv-gate/usr/src/common/openssl/doc/ssl/
H A DSSL_CTX_sess_set_get_cb.pod14 void (*remove_session_cb)(SSL_CTX *ctx, SSL_SESSION *));
23 void (*remove_session_cb)(struct ssl_ctx_st *ctx, SSL_SESSION *sess);
62 The remove_session_cb() is called, whenever the SSL engine removes a session
66 L<SSL_CTX_free(3)|SSL_CTX_free(3)> is called. The remove_session_cb() is passed
H A DSSL_CTX_flush_sessions.pod36 cache. When a session is found and removed, the remove_session_cb is however
/onnv-gate/usr/src/common/openssl/ssl/
H A Dssl_sess.c511 if (ctx->remove_session_cb != NULL) in remove_session_lock()
512 ctx->remove_session_cb(ctx,r); in remove_session_lock()
675 if (p->ctx->remove_session_cb != NULL) in timeout()
676 p->ctx->remove_session_cb(p->ctx,s); in timeout()
H A Dssl.h654 void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess); member
791 #define SSL_CTX_sess_set_remove_cb(ctx,cb) ((ctx)->remove_session_cb=(cb))
792 #define SSL_CTX_sess_get_remove_cb(ctx) ((ctx)->remove_session_cb)
H A Dssl_lib.c1373 ret->remove_session_cb=0; in IMPLEMENT_LHASH_HASH_FN()