aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 8e348f25..c8333817 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3257,7 +3257,7 @@ MHD_connection_epoll_update_ (struct MHD_Connection *connection)
3257 /* add to epoll set */ 3257 /* add to epoll set */
3258 struct epoll_event event; 3258 struct epoll_event event;
3259 3259
3260 event.events = EPOLLIN | EPOLLOUT | EPOLLET; 3260 event.events = EPOLLIN | EPOLLOUT | EPOLLPRI | EPOLLET;
3261 event.data.ptr = connection; 3261 event.data.ptr = connection;
3262 if (0 != epoll_ctl (daemon->epoll_fd, 3262 if (0 != epoll_ctl (daemon->epoll_fd,
3263 EPOLL_CTL_ADD, 3263 EPOLL_CTL_ADD,