1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

LibIMAP: Support for FETCH BodyStructure

This completes the implementation of the FETCH command.
This commit is contained in:
x-yl 2021-06-02 18:31:24 +04:00 committed by Ali Mohammad Pur
parent c152a9a594
commit 318709c8ca
4 changed files with 376 additions and 55 deletions

View file

@ -68,5 +68,12 @@ private:
Optional<Vector<Address>> parse_address_list();
Address parse_address();
StringView parse_astring();
HashMap<String, String> parse_body_fields_params();
BodyStructure parse_body_structure();
BodyStructure parse_one_part_body();
Tuple<String, HashMap<String, String>> parse_disposition();
Vector<String> parse_langs();
BodyExtension parse_body_extension();
Envelope parse_envelope();
};
}