LibIMAP: Support for the LIST and SELECT commands

This commit is contained in:
x-yl 2021-06-01 18:39:50 +04:00 committed by Ali Mohammad Pur
commit 2f04d24b66
Notes: sideshowbarker 2024-07-18 12:25:08 +09:00
5 changed files with 343 additions and 1 deletions

View file

@ -21,6 +21,9 @@ public:
RefPtr<Promise<Optional<Response>>> send_command(Command&&);
RefPtr<Promise<Optional<Response>>> send_simple_command(CommandType);
void send_raw(StringView data);
RefPtr<Promise<Optional<SolidResponse>>> list(StringView reference_name, StringView mailbox_name);
RefPtr<Promise<Optional<SolidResponse>>> select(StringView string);
void close();
Function<void(ResponseData&&)> unrequested_response_callback;