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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index f5397cc5..461c95cd 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -436,7 +436,13 @@ enum MHD_FLAG
436 /** 436 /**
437 * Use a single socket for IPv4 and IPv6. 437 * Use a single socket for IPv4 and IPv6.
438 */ 438 */
439 MHD_USE_DUAL_STACK = MHD_USE_IPv6 | 2048 439 MHD_USE_DUAL_STACK = MHD_USE_IPv6 | 2048,
440
441 /**
442 * Enable EPOLL turbo. Only useful with MHD_USE_EPOLL_LINUX_ONLY.
443 * Highly experimental, do not use in production yet.
444 */
445 MHD_USE_EPOLL_TURBO = 4096
440 446
441}; 447};
442 448