• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/usr/include/openssl/

Lines Matching refs:SSL_SESSION

515 	} SSL_SESSION;
683 DECLARE_LHASH_OF(SSL_SESSION);
694 LHASH_OF(SSL_SESSION) *sessions;
721 int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess);
722 void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess);
723 SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl,
883 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx);
909 void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess));
910 int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(struct ssl_st *ssl, SSL_SESSION *sess);
911 void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx, void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess));
912 void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))(struct ssl_ctx_st *ctx, SSL_SESSION *sess);
913 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));
914 SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(struct ssl_st *ssl, unsigned char *Data, int len, int *copy);
1053 /* These are the ones being used, the ones in SSL_SESSION are
1084 SSL_SESSION *session;
1290 #define d2i_SSL_SESSION_bio(bp,s_id) ASN1_d2i_bio_of(SSL_SESSION,SSL_SESSION_new,d2i_SSL_SESSION,bp,s_id)
1291 #define i2d_SSL_SESSION_bio(bp,s_id) ASN1_i2d_bio_of(SSL_SESSION,i2d_SSL_SESSION,bp,s_id)
1293 DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
1544 long SSL_SESSION_get_time(const SSL_SESSION *s);
1545 long SSL_SESSION_set_time(SSL_SESSION *s, long t);
1546 long SSL_SESSION_get_timeout(const SSL_SESSION *s);
1547 long SSL_SESSION_set_timeout(SSL_SESSION *s, long t);
1550 SSL_SESSION *SSL_SESSION_new(void);
1551 const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *s,
1554 int SSL_SESSION_print_fp(FILE *fp,const SSL_SESSION *ses);
1557 int SSL_SESSION_print(BIO *fp,const SSL_SESSION *ses);
1559 void SSL_SESSION_free(SSL_SESSION *ses);
1560 int i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp);
1561 int SSL_set_session(SSL *to, SSL_SESSION *session);
1562 int SSL_CTX_add_session(SSL_CTX *s, SSL_SESSION *c);
1563 int SSL_CTX_remove_session(SSL_CTX *,SSL_SESSION *c);
1568 SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,const unsigned char **pp,
1701 SSL_SESSION *SSL_get_session(const SSL *ssl);
1702 SSL_SESSION *SSL_get1_session(SSL *ssl); /* obtain a reference count */
1718 int SSL_SESSION_set_ex_data(SSL_SESSION *ss,int idx,void *data);
1719 void *SSL_SESSION_get_ex_data(const SSL_SESSION *ss,int idx);