gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] branch master updated: Added missing EPOLLP


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: Added missing EPOLLPRI in MHD_connection_epoll_update_()
Date: Wed, 15 Mar 2017 22:21:21 +0100

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new 4f9c0097 Added missing EPOLLPRI in MHD_connection_epoll_update_()
4f9c0097 is described below

commit 4f9c0097f1582a312e5dba8edbc7a7da799755f7
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Thu Mar 16 00:21:11 2017 +0300

    Added missing EPOLLPRI in MHD_connection_epoll_update_()
---
 src/microhttpd/connection.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
       /* 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,

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]