提交 87adf1fa 编写于 作者: D Dr. Stephen Henson

new function SSL_is_server to which returns 1 is the corresponding SSL context is for a server

上级 15a70fe5
...@@ -2177,6 +2177,7 @@ void SSL_set_not_resumable_session_callback(SSL *ssl, ...@@ -2177,6 +2177,7 @@ void SSL_set_not_resumable_session_callback(SSL *ssl,
void SSL_set_debug(SSL *s, int debug); void SSL_set_debug(SSL *s, int debug);
int SSL_cache_hit(SSL *s); int SSL_cache_hit(SSL *s);
int SSL_is_server(SSL *s);
#ifndef OPENSSL_NO_SSL_TRACE #ifndef OPENSSL_NO_SSL_TRACE
void SSL_trace(int write_p, int version, int content_type, void SSL_trace(int write_p, int version, int content_type,
......
...@@ -3341,6 +3341,11 @@ int SSL_cache_hit(SSL *s) ...@@ -3341,6 +3341,11 @@ int SSL_cache_hit(SSL *s)
return s->hit; return s->hit;
} }
int SSL_is_server(SSL *s)
{
return s->server;
}
#if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16) #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
#include "../crypto/bio/bss_file.c" #include "../crypto/bio/bss_file.c"
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册