libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit c38412e3fd082f2d90adc12594b9657c9496a854
parent f2cb0ef073b5e0ae50200aec3f69822b6663e3d3
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Thu, 27 Oct 2016 22:12:57 +0300

epoll mode: always watch to ITC level if ITC was requested.

Diffstat:
Msrc/microhttpd/daemon.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -4607,8 +4607,7 @@ setup_epoll_to_listen (struct MHD_Daemon *daemon) #endif return MHD_NO; } - if ( (MHD_ITC_IS_VALID_(daemon->itc)) && - (MHD_USE_SUSPEND_RESUME == (daemon->options & MHD_USE_SUSPEND_RESUME)) ) + if (MHD_ITC_IS_VALID_(daemon->itc)) { event.events = EPOLLIN; event.data.ptr = NULL;