• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/ssl/

Lines Matching refs:SSL_SESSION

515 	} SSL_SESSION;
698 DECLARE_LHASH_OF(SSL_SESSION);
709 LHASH_OF(SSL_SESSION) *sessions;
736 int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess);
737 void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess);
738 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl,
898 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx);
924 void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess));
925 int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(struct ssl_st *ssl, SSL_SESSION *sess);
926 void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx, void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess));
927 void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))(struct ssl_ctx_st *ctx, SSL_SESSION *sess);
928 void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, unsigned char *data,int len,int *copy));
929 SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(struct ssl_st *ssl, unsigned char *Data, int len, int *copy);
1068 /* These are the ones being used, the ones in SSL_SESSION are
1099 SSL_SESSION *session;
1305 #define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,bp,s_id)
1306 #define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio_of(SSL_SESSION,i2d_SSL_SESSION,bp,s_id)
1308 DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
1564 long SSL_SESSION_get_time(const SSL_SESSION *s);
1565 long SSL_SESSION_set_time(SSL_SESSION *s, long t);
1566 long SSL_SESSION_get_timeout(const SSL_SESSION *s);
1567 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
1570 SSL_SESSION *SSL_SESSION_new(void);
1571 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
1574 int SSL_SESSION_print_fp(FILE *fp,const SSL_SESSION *ses);
1577 int SSL_SESSION_print(BIO *fp,const SSL_SESSION *ses);
1579 void SSL_SESSION_free(SSL_SESSION *ses);
1580 int i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp);
1581 int SSL_set_session(SSL *to, SSL_SESSION *session);
1582 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
1583 int SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c);
1588 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,const unsigned char **pp,
1721 SSL_SESSION *SSL_get_session(const SSL *ssl);
1722 SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */
1738 int SSL_SESSION_set_ex_data(SSL_SESSION *ss,int idx,void *data);
1739 void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss,int idx);