aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.c
diff options
context:
space:
mode:
authorJiri Hruska <jirka@fud.cz>2013-02-23 10:48:52 +0100
committerSteve Holme <steve_holme@hotmail.com>2013-02-23 11:27:05 +0000
commit35fb6bee0e3e3a49579f650b897bb1f7a86d157d (patch)
tree6df7563e1b25a2d4cc0b09951ef7bfff4146ed6a /lib/imap.c
parent13625a0d09a0ad61960d2bd9eeb1fec3c05461d6 (diff)
imap: Removed more FTP leftovers
Changed some variables and comments still using FTP terminology.
Diffstat (limited to 'lib/imap.c')
-rw-r--r--lib/imap.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/imap.c b/lib/imap.c
index b6f5b97df..73784019a 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -664,7 +664,7 @@ static CURLcode imap_state_servergreet_resp(struct connectdata *conn,
if(imapcode != 'O') {
failf(data, "Got unexpected imap-server response");
- return CURLE_FTP_WEIRD_SERVER_REPLY;
+ return CURLE_FTP_WEIRD_SERVER_REPLY; /* TODO: fix this code */
}
result = imap_state_capability(conn);
@@ -1168,11 +1168,11 @@ static CURLcode imap_state_fetch_resp(struct connectdata *conn, int imapcode,
ptr++;
if(*ptr == '{') {
- curl_off_t filesize = curlx_strtoofft(ptr + 1, NULL, 10);
- if(filesize)
- Curl_pgrsSetDownloadSize(data, filesize);
+ curl_off_t size = curlx_strtoofft(ptr + 1, NULL, 10);
+ if(size)
+ Curl_pgrsSetDownloadSize(data, size);
- infof(data, "Found %" FORMAT_OFF_TU " bytes to download\n", filesize);
+ infof(data, "Found %" FORMAT_OFF_TU " bytes to download\n", size);
if(pp->cache) {
/* At this point there is a bunch of data in the header "cache" that is
@@ -1180,20 +1180,20 @@ static CURLcode imap_state_fetch_resp(struct connectdata *conn, int imapcode,
that there may even be additional "headers" after the body. */
size_t chunk = pp->cache_size;
- if(chunk > (size_t)filesize)
+ if(chunk > (size_t)size)
/* the conversion from curl_off_t to size_t is always fine here */
- chunk = (size_t)filesize;
+ chunk = (size_t)size;
result = Curl_client_write(conn, CLIENTWRITE_BODY, pp->cache, chunk);
if(result)
return result;
- filesize -= chunk;
+ size -= chunk;
/* we've now used parts of or the entire cache */
if(pp->cache_size > chunk) {
/* part of, move the trailing data to the start and reduce the size */
- memmove(pp->cache, pp->cache+chunk,
+ memmove(pp->cache, pp->cache + chunk,
pp->cache_size - chunk);
pp->cache_size -= chunk;
}
@@ -1205,17 +1205,17 @@ static CURLcode imap_state_fetch_resp(struct connectdata *conn, int imapcode,
}
}
- infof(data, "Filesize left: %" FORMAT_OFF_T "\n", filesize);
+ infof(data, "Size left: %" FORMAT_OFF_T "\n", size);
- if(!filesize)
+ if(!size)
/* the entire data is already transferred! */
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
else
/* IMAP download */
- Curl_setup_transfer(conn, FIRSTSOCKET, filesize, FALSE,
- imap->bytecountp, -1, NULL); /* no upload here */
+ Curl_setup_transfer(conn, FIRSTSOCKET, size, FALSE, imap->bytecountp,
+ -1, NULL); /* no upload here */
- data->req.maxdownload = filesize;
+ data->req.maxdownload = size;
}
else
/* We don't know how to parse this line */
@@ -1479,8 +1479,8 @@ static CURLcode imap_done(struct connectdata *conn, CURLcode status,
*
* imap_perform()
*
- * This is the actual DO function for IMAP. Get a file/directory according to
- * the options previously setup.
+ * This is the actual DO function for IMAP. Fetch a message according to the
+ * options previously setup.
*/
static CURLcode imap_perform(struct connectdata *conn, bool *connected,
bool *dophase_done)