aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 89a68772..1565c21f 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -224,14 +224,14 @@ enum MHD_ConnectionEventLoopInfo
224 /** 224 /**
225 * We are waiting for the application to provide data. 225 * We are waiting for the application to provide data.
226 */ 226 */
227 MHD_EVENT_LOOP_INFO_BLOCK = 1 << 2, 227 MHD_EVENT_LOOP_INFO_PROCESS = 1 << 2,
228 228
229 /** 229 /**
230 * Some data is ready to be processed, but more data could 230 * Some data is ready to be processed, but more data could
231 * be read. 231 * be read.
232 */ 232 */
233 MHD_EVENT_LOOP_INFO_PROCESS_READ = 233 MHD_EVENT_LOOP_INFO_PROCESS_READ =
234 MHD_EVENT_LOOP_INFO_READ | MHD_EVENT_LOOP_INFO_BLOCK, 234 MHD_EVENT_LOOP_INFO_READ | MHD_EVENT_LOOP_INFO_PROCESS,
235 235
236 /** 236 /**
237 * We are finished and are awaiting cleanup. 237 * We are finished and are awaiting cleanup.