diff options
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r-- | src/include/microhttpd.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 96dc2f27..4f8aee0c 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -518,7 +518,13 @@ enum MHD_FLAG | |||
518 | * Enalbed always on W32 as winsock does not properly behave | 518 | * Enalbed always on W32 as winsock does not properly behave |
519 | * with `shutdown()` and this then fixes potential problems. | 519 | * with `shutdown()` and this then fixes potential problems. |
520 | */ | 520 | */ |
521 | MHD_USE_EPOLL_TURBO = 4096 | 521 | MHD_USE_EPOLL_TURBO = 4096, |
522 | |||
523 | /** | ||
524 | * Enable suspend/resume functions, which also implies setting up | ||
525 | * pipes to signal resume. | ||
526 | */ | ||
527 | MHD_USE_SUSPEND_RESUME = 8192 | MHD_USE_PIPE_FOR_SHUTDOWN | ||
522 | 528 | ||
523 | }; | 529 | }; |
524 | 530 | ||