Skip to content

Commit

Permalink
We should be fine without oneshot, i'll test this.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5612 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Oct 31, 2006
1 parent ee034e0 commit 53707ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/socketengine_epoll.cpp
Expand Up @@ -83,7 +83,7 @@ void EPollEngine::WantWrite(EventHandler* eh)
* status for us and saves us a call.
*/
struct epoll_event ev;
ev.events = EPOLLOUT | EPOLLONESHOT;
ev.events = EPOLLOUT;
ev.data.fd = eh->GetFd();
int i = epoll_ctl(EngineHandle, EPOLL_CTL_MOD, eh->GetFd(), &ev);
if (i < 0)
Expand Down

0 comments on commit 53707ca

Please sign in to comment.