aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/microhttpd/connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index ab760e4a..b8e2462b 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3560,9 +3560,9 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
3560 /* no default action */ 3560 /* no default action */
3561 break; 3561 break;
3562 case MHD_CONNECTION_HEADERS_SENT: 3562 case MHD_CONNECTION_HEADERS_SENT:
3563 /* Some clients may take some actions right after header receive */ 3563 /* Some clients may take some actions right after header receive.
3564 if (socket_flush_possible (connection)) 3564 This is now handled by code in and around mhd_send.c. */
3565 socket_start_no_buffering_flush (connection); /* REMOVE: Dead */ 3565 break;
3566 3566
3567#ifdef UPGRADE_SUPPORT 3567#ifdef UPGRADE_SUPPORT
3568 if (NULL != connection->response->upgrade_handler) 3568 if (NULL != connection->response->upgrade_handler)