Re: [libmicrohttpd] Using External EPOLL event loop

2018-11-24 Thread Badari Prasad
it.taler.net/). However, the Git web is currently down as we > are moving servers, so this link won't help you right now. So I'm also > attaching the fakebank.c code itself. > > I hope this helps! > > Christian > > On 11/24/18 6:53 AM, Badari Prasad wrote: > >

Re: [libmicrohttpd] Require info on setting TCP_NODELAY for MHD

2018-11-23 Thread Badari Prasad
gt; the rest seems to be broken on some OSes and fine on others...), and > would need to be both documented / specified and tested. > > Help with this would be welcome, in the meantime all I can say is that > it is on our radar... > > Happy hacking! > > Christian > > O

[libmicrohttpd] Using External EPOLL event loop

2018-11-23 Thread Badari Prasad
Hi My application is single threaded and using epoll for dispatching all events, with MHD, I noticed that it will create its own internal EPOLL through function setup_epoll_fd. Does MHD support working with external EPOLL event loop ? I couldn't find details in documentation. Could you kindly l

Re: [libmicrohttpd] Require info on setting TCP_NODELAY for MHD

2018-11-21 Thread Badari Prasad
etween MHD receiving request and sending response to the client. With this I got to understand that TCP_CORK and TCP_NODELAY is kind off delaying the response being sent out on transport layer... Is their a way to always enable TCP_NODELAY on MHD ? and check if we see this delay on transport layer ? Thank

[libmicrohttpd] Require info on setting TCP_NODELAY for MHD

2018-11-09 Thread Badari Prasad
Hi, I was going through old mailist archives, found one thread on TCP_NODELAY : https://lists.gnu.org/archive/html/libmicrohttpd/2015-11/msg00077.html But couldn't know if the option provided is it at compile time flag or runtime flag per connection basis. Kindly let me know the information on T