aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 4be4a258..f256cb8f 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1411,7 +1411,7 @@ MHD_connection_update_event_loop_info (struct MHD_Connection *connection)
1411 { 1411 {
1412 if ((MHD_YES != try_grow_read_buffer (connection)) && 1412 if ((MHD_YES != try_grow_read_buffer (connection)) &&
1413 (0 != (connection->daemon->options & 1413 (0 != (connection->daemon->options &
1414 (MHD_USE_SELECT_INTERNALLY | 1414 (MHD_USE_INTERNAL_POLLING_THREAD |
1415 MHD_USE_THREAD_PER_CONNECTION)))) 1415 MHD_USE_THREAD_PER_CONNECTION))))
1416 { 1416 {
1417 /* failed to grow the read buffer, and the 1417 /* failed to grow the read buffer, and the
@@ -2009,7 +2009,7 @@ process_request_body (struct MHD_Connection *connection)
2009 the setup was incorrect, which may prevent us from 2009 the setup was incorrect, which may prevent us from
2010 handling the rest of the request */ 2010 handling the rest of the request */
2011 if ( ( (0 != (connection->daemon->options & MHD_USE_THREAD_PER_CONNECTION)) || 2011 if ( ( (0 != (connection->daemon->options & MHD_USE_THREAD_PER_CONNECTION)) ||
2012 (0 != (connection->daemon->options & MHD_USE_SELECT_INTERNALLY)) ) && 2012 (0 != (connection->daemon->options & MHD_USE_INTERNAL_POLLING_THREAD)) ) &&
2013 (MHD_NO == connection->suspended) ) 2013 (MHD_NO == connection->suspended) )
2014 MHD_DLOG (connection->daemon, 2014 MHD_DLOG (connection->daemon,
2015 _("WARNING: incomplete POST processing and connection not suspended will result in hung connection.\n")); 2015 _("WARNING: incomplete POST processing and connection not suspended will result in hung connection.\n"));