libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 39ddaf988f41c50b3a36d6683b4ca3c7e298041d
parent c51869af5a5f1b76cce745afaf9c75ac9a502ee0
Author: ng0 <ng0@n0.is>
Date:   Sun, 18 Aug 2019 11:23:02 +0000

connection.c: remove dead code.

Diffstat:
Msrc/microhttpd/connection.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -3560,9 +3560,9 @@ MHD_connection_handle_idle (struct MHD_Connection *connection) /* no default action */ break; case MHD_CONNECTION_HEADERS_SENT: - /* Some clients may take some actions right after header receive */ - if (socket_flush_possible (connection)) - socket_start_no_buffering_flush (connection); /* REMOVE: Dead */ + /* Some clients may take some actions right after header receive. + This is now handled by code in and around mhd_send.c. */ + break; #ifdef UPGRADE_SUPPORT if (NULL != connection->response->upgrade_handler)