commit 4f9c0097f1582a312e5dba8edbc7a7da799755f7
parent 875e27c51b57bd8bfa7109c61c92d7b4678b204f
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Thu, 16 Mar 2017 00:21:11 +0300
Added missing EPOLLPRI in MHD_connection_epoll_update_()
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -3257,7 +3257,7 @@ MHD_connection_epoll_update_ (struct MHD_Connection *connection)
/* add to epoll set */
struct epoll_event event;
- event.events = EPOLLIN | EPOLLOUT | EPOLLET;
+ event.events = EPOLLIN | EPOLLOUT | EPOLLPRI | EPOLLET;
event.data.ptr = connection;
if (0 != epoll_ctl (daemon->epoll_fd,
EPOLL_CTL_ADD,