Home
last modified time | relevance | path

Searched refs:get_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.pod16 SSL_SESSION (*get_session_cb)(SSL *, unsigned char *, int, int *));
24 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, unsigned char *data,
69 The get_session_cb() is only called on SSL/TLS servers with the session id
70 proposed by the client. The get_session_cb() is always called, also when
71 session caching was disabled. The get_session_cb() is passed the
H A Dd2i_SSL_SESSION.pod36 inside the get_session_cb() (see
/onnv-gate/usr/src/common/openssl/ssl/
H A Dssl_sess.c310 if (s->ctx->get_session_cb != NULL in ssl_get_prev_session()
311 && (ret=s->ctx->get_session_cb(s,session_id,len,&copy)) in ssl_get_prev_session()
H A Dssl.h655 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, member
793 #define SSL_CTX_sess_set_get_cb(ctx,cb) ((ctx)->get_session_cb=(cb))
794 #define SSL_CTX_sess_get_get_cb(ctx) ((ctx)->get_session_cb)
H A Dssl_lib.c1374 ret->get_session_cb=0; in IMPLEMENT_LHASH_HASH_FN()