aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-20 19:21:52 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-22 09:48:06 +0300
commit699b6cd5636ef7ce2e41b42301fc1b56f9a02f8e (patch)
treea7203aba95af3df388f553c8bf6e15cbcd565b76 /src/microhttpd/internal.h
parent571ec180781a55a63007d97bad9755265b282ebf (diff)
downloadlibmicrohttpd-699b6cd5636ef7ce2e41b42301fc1b56f9a02f8e.tar.gz
libmicrohttpd-699b6cd5636ef7ce2e41b42301fc1b56f9a02f8e.zip
Added new state for MHD_ConnectionEventLoopInfo
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 6a94faea..89a68772 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -227,6 +227,13 @@ enum MHD_ConnectionEventLoopInfo
227 MHD_EVENT_LOOP_INFO_BLOCK = 1 << 2, 227 MHD_EVENT_LOOP_INFO_BLOCK = 1 << 2,
228 228
229 /** 229 /**
230 * Some data is ready to be processed, but more data could
231 * be read.
232 */
233 MHD_EVENT_LOOP_INFO_PROCESS_READ =
234 MHD_EVENT_LOOP_INFO_READ | MHD_EVENT_LOOP_INFO_BLOCK,
235
236 /**
230 * We are finished and are awaiting cleanup. 237 * We are finished and are awaiting cleanup.
231 */ 238 */
232 MHD_EVENT_LOOP_INFO_CLEANUP = 1 << 3 239 MHD_EVENT_LOOP_INFO_CLEANUP = 1 << 3