aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-20 19:23:54 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-22 09:48:06 +0300
commit9fef2196c6dbd8c54f4291bf80a4ced03de7660b (patch)
treefc90d8c63f13c073fb035266695fcf455657223b /src/microhttpd/internal.h
parent699b6cd5636ef7ce2e41b42301fc1b56f9a02f8e (diff)
downloadlibmicrohttpd-9fef2196c6dbd8c54f4291bf80a4ced03de7660b.tar.gz
libmicrohttpd-9fef2196c6dbd8c54f4291bf80a4ced03de7660b.zip
Renamed one state in MHD_ConnectionEventLoopInfo for clarity
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.