aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_send.c')
-rw-r--r--src/microhttpd/mhd_send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 6e362252..764fd82d 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -329,11 +329,11 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
329 switch (options) 329 switch (options)
330 { 330 {
331 /* No corking */ 331 /* No corking */
332 case MHD_SSO_NO_CORK: 332 case MHD_SSO_PUSH_DATA:
333 want_cork = false; 333 want_cork = false;
334 break; 334 break;
335 /* Do corking, consider MSG_MORE instead if available. */ 335 /* Do corking, consider MSG_MORE instead if available. */
336 case MHD_SSO_MAY_CORK: 336 case MHD_SSO_PREFER_BUFF:
337 want_cork = true; 337 want_cork = true;
338 break; 338 break;
339 /* Cork the header. */ 339 /* Cork the header. */