Parser for handling multipart/form-data file uploads. Part of the PicoFramework HTTP server. This module provides the MultipartParser class, which is responsible for processing multipart/form-data uploads over HTTP. It handles detecting boundaries, parsing headers, extracting filenames, and writing file data to storage (e.g., an SD card). It also sends appropriate HTTP responses based on the success or failure of the upload process. More...
Go to the source code of this file.
Classes | |
class | MultipartParser |
Parses and processes multipart/form-data uploads over HTTP. More... | |
Enumerations | |
enum | State { SEARCHING_FOR_BOUNDARY , FOUND_BOUNDARY , FOUND_DATA_START , COMPLETE } |
enum State |
Enumerator | |
---|---|
SEARCHING_FOR_BOUNDARY | |
FOUND_BOUNDARY | |
FOUND_DATA_START | |
COMPLETE |
Definition at line 26 of file MultipartParser.h.