We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 456d01b commit 54406edCopy full SHA for 54406ed
demos/guide/quic-hq-interop-server.c
@@ -354,10 +354,6 @@ static BIO *create_socket(uint16_t port)
354
static int handle_io_failure(SSL *ssl, int res)
355
{
356
switch (SSL_get_error(ssl, res)) {
357
- case SSL_ERROR_WANT_READ:
358
- case SSL_ERROR_WANT_WRITE:
359
- return 1;
360
-
361
case SSL_ERROR_ZERO_RETURN:
362
/* EOF */
363
return 0;
@@ -459,7 +455,6 @@ static void process_new_stream(SSL *stream)
459
455
ret = handle_io_failure(stream, ret);
460
456
if (ret >= 1) {
461
457
/* Transient failure, retry */
462
- fprintf(stderr, "Transient read failure, retrying\n");
463
458
continue;
464
} else if (ret == 0) {
465
/* EOF condition, fin bit set, we got the whole request */
0 commit comments