if no error code and -brief selected print out connection closed instead of read error

This commit is contained in:
Dr. Stephen Henson 2012-12-03 03:33:44 +00:00
parent 139cd16cc5
commit 66d9f2e521
1 changed files with 4 additions and 1 deletions

View File

@ -1912,7 +1912,10 @@ printf("read=%d pending=%d peek=%d\n",k,SSL_pending(con),SSL_peek(con,zbuf,10240
break;
case SSL_ERROR_SYSCALL:
ret=get_last_socket_error();
BIO_printf(bio_err,"read:errno=%d\n",ret);
if (ret == 0 && c_brief)
BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n");
else
BIO_printf(bio_err,"read:errno=%d\n",ret);
goto shut;
case SSL_ERROR_ZERO_RETURN:
BIO_printf(bio_c_out,"closed\n");