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.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index a1370e52..cb0a334f 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -374,7 +374,16 @@ enum MHD_FLAG
374 * and that DO provide other mechanisms for cache control. See also 374 * and that DO provide other mechanisms for cache control. See also
375 * RFC 2616, section 14.18 (exception 3). 375 * RFC 2616, section 14.18 (exception 3).
376 */ 376 */
377 MHD_SUPPRESS_DATE_NO_CLOCK = 128 377 MHD_SUPPRESS_DATE_NO_CLOCK = 128,
378
379 /**
380 * Run without a listen socket. This option only makes sense if
381 * 'MHD_add_connection' is to be used exclusively to connect HTTP
382 * clients to the HTTP server. This option is incompatible with
383 * using a thread pool; if it is used, 'MHD_OPTION_THREAD_POOL_SIZE'
384 * is ignored.
385 */
386 MHD_USE_NO_LISTEN_SOCKET = 256
378 387
379}; 388};
380 389