Some time in history, SSL_CTX_sessions() disappeared. It is now
restored, but not as a macro this time...
This commit is contained in:
parent
582afb4bd7
commit
1e7396beeb
@ -472,6 +472,7 @@ struct ssl_ctx_st
|
||||
* defined, this will still get called. */
|
||||
#define SSL_SESS_CACHE_NO_INTERNAL_LOOKUP 0x0100
|
||||
|
||||
struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx);
|
||||
#define SSL_CTX_sess_number(ctx) \
|
||||
SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_NUMBER,0,NULL)
|
||||
#define SSL_CTX_sess_connect(ctx) \
|
||||
|
@ -798,6 +798,11 @@ long SSL_callback_ctrl(SSL *s, int cmd, void (*fp)())
|
||||
}
|
||||
}
|
||||
|
||||
struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx)
|
||||
{
|
||||
return ctx->sessions;
|
||||
}
|
||||
|
||||
long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,char *parg)
|
||||
{
|
||||
long l;
|
||||
|
Loading…
x
Reference in New Issue
Block a user