diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-09-27 17:40:03 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2022-09-27 17:40:03 +0300 |
commit | 889b74b68ee8910e0fac7d8c7807b670d7462498 (patch) | |
tree | 696495776b31d65e694912a6d1e2b427f20398e5 | |
parent | 75d385212289b810d005c140c73709e594b02ade (diff) |
connection.c: removed unused check for chunked replies
-rw-r--r-- | src/microhttpd/connection.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index 18bb36d6..f187da59 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c @@ -5193,13 +5193,9 @@ MHD_connection_handle_idle (struct MHD_Connection *connection) "Closing connection (failed to create response footer).")); continue; } - /* TODO: remove next 'if' */ - if ( (! connection->rp.props.chunked) || - (connection->write_buffer_send_offset == - connection->write_buffer_append_offset) ) - connection->state = MHD_CONNECTION_FULL_REPLY_SENT; - else - connection->state = MHD_CONNECTION_FOOTERS_SENDING; + mhd_assert (connection->write_buffer_send_offset < \ + connection->write_buffer_append_offset); + connection->state = MHD_CONNECTION_FOOTERS_SENDING; continue; case MHD_CONNECTION_FOOTERS_SENDING: mhd_assert (connection->rp.props.send_reply_body); |