aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 41c5d2ce..598b0d67 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1245,6 +1245,11 @@ enum MHD_FLAG
1245 /** 1245 /**
1246 * Run using one thread per connection. 1246 * Run using one thread per connection.
1247 * Must be used only with #MHD_USE_INTERNAL_POLLING_THREAD. 1247 * Must be used only with #MHD_USE_INTERNAL_POLLING_THREAD.
1248 *
1249 * If #MHD_USE_ITC is also not used, closed and expired connections may only
1250 * be cleaned up internally when a new connection is received.
1251 * Consider adding of #MHD_USE_ITC flag to have faster internal cleanups
1252 * at very minor increase in system resources usage.
1248 */ 1253 */
1249 MHD_USE_THREAD_PER_CONNECTION = 4, 1254 MHD_USE_THREAD_PER_CONNECTION = 4,
1250 1255