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

(backport from HEAD)
This commit is contained in:
Dr. Stephen Henson
2012-12-26 14:45:46 +00:00
parent 7531dd18dc
commit 731abd3bd7
2 changed files with 6 additions and 0 deletions

View File

@@ -3327,6 +3327,11 @@ int SSL_cache_hit(SSL *s)
return s->hit;
}
int SSL_is_server(SSL *s)
{
return s->server;
}
#if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
#include "../crypto/bio/bss_file.c"
#endif