mirror of
https://github.com/curl/curl.git
synced 2026-06-01 23:04:15 +03:00
imap: Introduced IMAP_APPEND and IMAP_APPEND_FINAL states
This commit is contained in:
parent
d46d107e0c
commit
1383522e3a
2 changed files with 4 additions and 0 deletions
|
|
@ -468,6 +468,8 @@ static void state(struct connectdata *conn, imapstate newstate)
|
|||
"SELECT",
|
||||
"FETCH",
|
||||
"FETCH_FINAL",
|
||||
"APPEND",
|
||||
"APPEND_FINAL",
|
||||
"LOGOUT",
|
||||
/* LAST */
|
||||
};
|
||||
|
|
|
|||
|
|
@ -48,6 +48,8 @@ typedef enum {
|
|||
IMAP_SELECT,
|
||||
IMAP_FETCH,
|
||||
IMAP_FETCH_FINAL,
|
||||
IMAP_APPEND,
|
||||
IMAP_APPEND_FINAL,
|
||||
IMAP_LOGOUT,
|
||||
IMAP_LAST /* never used */
|
||||
} imapstate;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue