multipart-parser-c
multipart-parser-c copied to clipboard
Http multipart parser implemented in C
Hi, Thanks for the great library. Not many repositories to parse multipart data even in GitHub. I am using this repo to parse multipart data from a camera. The camera...
In handle_headervalue function, the header is parsed using strtok with a semicolon(;) and space ( ). So it is ignoring the spaces in the filename and failing to get the...
hi all, I found that you guys have not understand what the format of multipart/form-data, the boundary is not as the same as it show in the body.Say we got...
Bit of a tradeoff here. I decided to just send additional lines with no separator from previous lines. One could send newlines with all header values, the way part data...
Also remove the trailing spaces.
@iafonov do you have a release plan for this project?
If the file content contains char of **CR,** the parse progress may be stop in middle of file content. So, the condition of emit **s_part_data** callback is weak, I fix...