imap: Introduced IMAP_CUSTOM state

This commit is contained in:
Jiri Hruska 2013-03-03 10:10:01 +01:00 committed by Steve Holme
parent dcffd936e1
commit 51dbaae432
2 changed files with 2 additions and 0 deletions

View File

@ -471,6 +471,7 @@ static void state(struct connectdata *conn, imapstate newstate)
"FETCH_FINAL",
"APPEND",
"APPEND_FINAL",
"CUSTOM",
"LOGOUT",
/* LAST */
};

View File

@ -50,6 +50,7 @@ typedef enum {
IMAP_FETCH_FINAL,
IMAP_APPEND,
IMAP_APPEND_FINAL,
IMAP_CUSTOM,
IMAP_LOGOUT,
IMAP_LAST /* never used */
} imapstate;