[libmicrohttpd] Multipart Reading

2018-11-09 Thread Santos Das
Hi, Can you please let me know how we do read the multupart message body using MHD. I am having problem in reading the multi part. Thanks, Santos

Re: [libmicrohttpd] next release

2018-11-09 Thread silvioprog
Awesome news! Thanks a lot for this work dudes. Cheers On Tue, Nov 6, 2018, 16:19 Christian Grothoff Dear all, > > I've now released libmicrohttpd 0.9.60 with the usual set of minor > bugfixes and feature enhancements: > > * gettext updated to 0.19.8 > * can use epoll() without listen socket no

Re: [libmicrohttpd] Multipart Reading

2018-11-09 Thread Santos Das
Hi, To be specific, my client is sending me data with Content Type multipart/related. As per the MHD guide, I should get the complete data stream. But, I am not getting so. Any idea what could be wrong ? MHD understands POST data and is able to decode certain formats (at the moment only applicat

[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

Re: [libmicrohttpd] Multipart Reading

2018-11-09 Thread silvioprog
Hi Santos, it is very easy to handle multi-part and/or form-data in MHD. Some time ago I sent this answer for a StackOverflow user: https://stackoverflow.com/a/32705436/3268398 . I handle uploads and/or payload (raw content) in the library (built under MHD) I'm maintaining. It allows to get any r