aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-16 00:21:11 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-16 00:21:11 +0300
commit4f9c0097f1582a312e5dba8edbc7a7da799755f7 (patch)
tree58d0dd420d19ffd8a7c8b1ce81c7b9459822f080
parent875e27c51b57bd8bfa7109c61c92d7b4678b204f (diff)
downloadlibmicrohttpd-4f9c0097f1582a312e5dba8edbc7a7da799755f7.tar.gz
libmicrohttpd-4f9c0097f1582a312e5dba8edbc7a7da799755f7.zip
Added missing EPOLLPRI in MHD_connection_epoll_update_()
-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,