Home
last modified time | relevance | path

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

/freebsd-13.1/crypto/openssl/doc/man3/
H A DSSL_CTX_sess_set_get_cb.pod17 SSL_SESSION (*get_session_cb)(SSL *,
89 The get_session_cb() is only called on SSL/TLS servers, and is given
91 proposed by the client. The get_session_cb() is always called, even when
92 session caching was disabled. The get_session_cb() is passed the
97 If the get_session_cb() does not write to B<copy>, the reference count
/freebsd-13.1/crypto/openssl/ssl/
H A Dssl_sess.c446 if (ret == NULL && s->session_ctx->get_session_cb != NULL) { in lookup_sess_in_cache()
449 ret = s->session_ctx->get_session_cb(s, sess_id, sess_id_len, &copy); in lookup_sess_in_cache()
1172 ctx->get_session_cb = cb; in SSL_CTX_sess_set_get_cb()
1179 return ctx->get_session_cb; in SSL_CTX_sess_get_get_cb()
H A Dssl_local.h776 SSL_SESSION *(*get_session_cb) (struct ssl_st *ssl, member
/freebsd-13.1/crypto/openssl/include/openssl/
H A Dssl.h723 SSL_SESSION *(*get_session_cb) (struct ssl_st
/freebsd-13.1/crypto/openssl/
H A DCHANGES5718 + Don't call get_session_cb() without proposed session