Hello masters, I have a server that receives uploads (more than one file per request) and I've noticed in my logs that a specific client is sending the following content-type:
Content-Type: multipart/form-data; boundary=-------Embt-Boundary- -6B63449418F96CEB But MHD_post_process() can't process it, and my callback iterator is never called, raising my exception "No file uploaded". After some googling, it seems this content-type is used by some clients, e.g: http://stackoverflow.com/questions/2305218/what-is-the- boundary-parameter-in-an-http-multi-part-post-request and https://ru.wikipedia.org/wiki/Multipart/form-data , however, I'm not sure if it is a bug in MHD or in the client. Sorry for not sending an example to reproduce the problem, I really don't know how to reproduce it (curl?). :-/ -- Silvio Clécio