[libmicrohttpd] TCP connection callbacks - problem

2018-10-19 Thread Daniel Bujnik
Hello, I am using libmicrohttpd with MHD_OPTION_NOTIFY_CONNECTION parameter to receive notifications for TCP connection opening/closing. Notifications for opening case are coming through as expected, however I am experiencing problems with closing case, where I am NOT getting the callback when my

Re: [libmicrohttpd] TCP connection callbacks - problem

2018-10-20 Thread Daniel Bujnik
l > inspection suggests your issue should occur in thread-per-connection > modes (only). In that case, I've pushed a (likely) fix in > b55cd46b..47281241 to Git master. > > Please test and report back! > > Happy hacking! > > Christian > > On 10/19/2018 03:53 PM

Re: [libmicrohttpd] TCP connection callbacks - problem

2018-10-26 Thread Daniel Bujnik
've pushed a (likely) fix in > b55cd46b..47281241 to Git master. > > Please test and report back! > > Happy hacking! > > Christian > > On 10/19/2018 03:53 PM, Daniel Bujnik wrote: > > Hello, > > > > I am using libmicrohttpd with MHD_OPTION_NOTIFY_CONNEC

Re: [libmicrohttpd] TCP connection callbacks - problem

2018-10-29 Thread Daniel Bujnik
master. > > Please test and report back! > > Happy hacking! > > Christian > > On 10/19/2018 03:53 PM, Daniel Bujnik wrote: > > Hello, > > > > I am using libmicrohttpd with MHD_OPTION_NOTIFY_CONNECTION parameter to > > receive notifications for T

Re: [libmicrohttpd] TCP connection callbacks - problem

2018-10-30 Thread Daniel Bujnik
g, and my previous patch required on manually > setting MHD_USE_ITC. I've now changed the code to automatically set this > option in your situation, so please try 47281241..777d5e04 > > Happy hacking! > > Christian > > On 10/26/18 2:21 PM, Daniel Bujnik wrote: > > Hi Ch

[libmicrohttpd] Own data buffer

2019-09-20 Thread Daniel Bujnik
Hello, Currently as far as I understand libmicrohttpd provides data being uploaded in multiple callbacks with the size and pointer to a buffer from which the user can copy data from. Is there any way the data could be uploaded straight into a user defined buffer? I do not care that much about the

Re: [libmicrohttpd] Own data buffer

2019-09-21 Thread Daniel Bujnik
ear Daniel, > > Currently, there is no MHD API to allow that. However, I'm not against > constructive proposals towards making this possible. > > Happy hacking! > > Christian > > On 9/20/19 4:43 PM, Daniel Bujnik wrote: > > Hello, > > > > Currently as