mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
imap: Introduced IMAP_APPEND and IMAP_APPEND_FINAL states
This commit is contained in:
parent
d46d107e0c
commit
1383522e3a
@ -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…
Reference in New Issue
Block a user