From b6f32464e9e52ca2892f5bceab46c4f60b592e5a Mon Sep 17 00:00:00 2001 From: Jiri Hruska Date: Sat, 23 Feb 2013 18:24:53 +0100 Subject: imap: Introduced new per-request veriables Added uidvalidity, uid and section variables to the per-request IMAP structure in preparation for upcoming URL parsing. --- lib/imap.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/imap.h') diff --git a/lib/imap.h b/lib/imap.h index 6fa1ba4f2..09c296f4c 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -59,6 +59,9 @@ struct IMAP { curl_off_t *bytecountp; curl_pp_transfer transfer; char *mailbox; /* Mailbox to select */ + char *uidvalidity; /* UIDVALIDITY to check in select */ + char *uid; /* Message UID to fetch */ + char *section; /* Message SECTION to fetch */ }; /* imap_conn is used for struct connection-oriented data in the connectdata -- cgit v1.2.1