imap: Introduced IMAP_APPEND and IMAP_APPEND_FINAL states

This commit is contained in:
Jiri Hruska 2013-03-01 20:04:56 +01:00 committed by Steve Holme
parent d46d107e0c
commit 1383522e3a
2 changed files with 4 additions and 0 deletions

View File

@ -468,6 +468,8 @@ static void state(struct connectdata *conn, imapstate newstate)
"SELECT",
"FETCH",
"FETCH_FINAL",
"APPEND",
"APPEND_FINAL",
"LOGOUT",
/* LAST */
};

View File

@ -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;