diff options
author | Jiri Hruska <jirka@fud.cz> | 2013-02-28 19:16:33 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-28 21:00:10 +0000 |
commit | 974c663471c15721082d9bdc50d90dd6843467b0 (patch) | |
tree | c083f6a4454558b599b8b86b98fd65f171e3f798 /lib/imap.h | |
parent | 692ef0e1582703e8b55192dceff5ad95aae1eb54 (diff) | |
download | curl-974c663471c15721082d9bdc50d90dd6843467b0.tar.gz |
imap: Introduced FETCH_FINAL state for processing final fetch responses
A typical FETCH response can be broken down into four parts:
1) "* <uid> FETCH (<what> {<size>}\r\n", using continuation syntax
2) <size> bytes of the actual message
3) ")\r\n", finishing the untagged response
4) "<tag> OK ...", finishing the command
Part 1 is read in imap_fetch_resp(), part 2 is consumed in the PERFORM
phase by the transfer subsystem, parts 3 and 4 are currently ignored.
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/imap.h b/lib/imap.h index 428bc23ae..af12130bd 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -47,6 +47,7 @@ typedef enum { IMAP_LOGIN, IMAP_SELECT, IMAP_FETCH, + IMAP_FETCH_FINAL, IMAP_LOGOUT, IMAP_LAST /* never used */ } imapstate; |