• Home
  • Raw
  • Download

Lines Matching refs:SSL_SESSION

54 B<SSL_SESSION>.
62 =item B<SSL_SESSION> (SSL Session)
231 =item int B<SSL_CTX_add_session>(SSL_CTX *ctx, SSL_SESSION *c);
277 =item int B<SSL_CTX_remove_session>(SSL_CTX *ctx, SSL_SESSION *c);
297 =item SSL_SESSION *(*B<SSL_CTX_sess_get_get_cb>(SSL_CTX *ctx))(SSL *ssl, unsigned char *data, int l…
299 =item int (*B<SSL_CTX_sess_get_new_cb>(SSL_CTX *ctx)(SSL *ssl, SSL_SESSION *sess);
301 =item void (*B<SSL_CTX_sess_get_remove_cb>(SSL_CTX *ctx)(SSL_CTX *ctx, SSL_SESSION *sess);
311 =item void B<SSL_CTX_sess_set_get_cb>(SSL_CTX *ctx, SSL_SESSION *(*cb)(SSL *ssl, unsigned char *dat…
313 =item void B<SSL_CTX_sess_set_new_cb>(SSL_CTX *ctx, int (*cb)(SSL *ssl, SSL_SESSION *sess));
315 =item void B<SSL_CTX_sess_set_remove_cb>(SSL_CTX *ctx, void (*cb)(SSL_CTX *ctx, SSL_SESSION *sess));
420 sessions defined in the B<SSL_SESSION> structures.
424 =item int B<SSL_SESSION_cmp>(const SSL_SESSION *a, const SSL_SESSION *b);
426 =item void B<SSL_SESSION_free>(SSL_SESSION *ss);
428 =item char *B<SSL_SESSION_get_app_data>(SSL_SESSION *s);
430 =item char *B<SSL_SESSION_get_ex_data>(const SSL_SESSION *s, int idx);
434 =item long B<SSL_SESSION_get_time>(const SSL_SESSION *s);
436 =item long B<SSL_SESSION_get_timeout>(const SSL_SESSION *s);
438 =item unsigned long B<SSL_SESSION_hash>(const SSL_SESSION *a);
440 =item SSL_SESSION *B<SSL_SESSION_new>(void);
442 =item int B<SSL_SESSION_print>(BIO *bp, const SSL_SESSION *x);
444 =item int B<SSL_SESSION_print_fp>(FILE *fp, const SSL_SESSION *x);
446 =item int B<SSL_SESSION_set_app_data>(SSL_SESSION *s, char *a);
448 =item int B<SSL_SESSION_set_ex_data>(SSL_SESSION *s, int idx, char *arg);
450 =item long B<SSL_SESSION_set_time>(SSL_SESSION *s, long t);
452 =item long B<SSL_SESSION_set_timeout>(SSL_SESSION *s, long t);
573 =item SSL_SESSION *B<SSL_get_session>(const SSL *ssl);
667 =item int B<SSL_set_session>(SSL *ssl, SSL_SESSION *session);