From b621be0936468eacd19f55c9ff43c7598a4a6701 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 27 Jan 2011 17:25:50 +0100 Subject: resolved problem with intermixing requests --- runtime/nsdpoll_ptcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/nsdpoll_ptcp.c') diff --git a/runtime/nsdpoll_ptcp.c b/runtime/nsdpoll_ptcp.c index 76c4e887..b6002b09 100644 --- a/runtime/nsdpoll_ptcp.c +++ b/runtime/nsdpoll_ptcp.c @@ -70,8 +70,8 @@ addEvent(nsdpoll_ptcp_t *pThis, int id, void *pUsr, int mode, nsd_ptcp_t *pSock, pNew->id = id; pNew->pUsr = pUsr; pNew->pSock = pSock; - //pNew->event.events = 0; /* TODO: at some time we should be able to use EPOLLET */ - pNew->event.events = EPOLLET; + pNew->event.events = 0; /* TODO: at some time we should be able to use EPOLLET */ + //pNew->event.events = EPOLLET; if(mode & NSDPOLL_IN) pNew->event.events |= EPOLLIN; if(mode & NSDPOLL_OUT) -- cgit