A comment.

This commit is contained in:
Bodo Möller 1999-05-15 00:00:28 +00:00
parent 8aa5b77c87
commit e2e3d5ce0c

View File

@ -657,6 +657,12 @@ int SSL_write(SSL *s,const char *buf,int num)
int SSL_shutdown(SSL *s)
{
/* Note that this function behaves different from what one might
* expect. Return values are 0 for no success (yet),
* 1 for success; but calling it once is usually not enough,
* even if blocking I/O is used (see ssl3_shutdown).
*/
if (s->handshake_func == 0)
{
SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);