aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-14 06:57:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-14 06:57:00 +0000
commit93f1784526f3ed02a5e32696fcd687181f0da80f (patch)
tree224a15128567674c67f3b686332f9bce3845ca7c /lib/urldata.h
parent559dc503c2cb7c36f24a3fe65350b47de87e6ba3 (diff)
Remade the FTP not-check status line and not-attempt-to-read-status-line
variables, conditions and things.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index e9486fdb0..161cc0004 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -180,8 +180,12 @@ struct FTP {
char *cache; /* data cache between getresponse()-calls */
size_t cache_size; /* size of cache in bytes */
- bool dont_check; /* set to TRUE to prevent the final (post-transfer)
- file size and 226/250 status check */
+ bool dont_check; /* Set to TRUE to prevent the final (post-transfer)
+ file size and 226/250 status check. It should still
+ read the line, just ignore the result. */
+ bool no_transfer; /* nothing was transfered, (possibly because a resumed
+ transfer already was complete) */
+
};
/****************************************************************************
@@ -204,9 +208,6 @@ struct ConnectBits {
bool use_range;
bool rangestringalloc; /* the range string is malloc()'ed */
-
- bool resume_done; /* nothing was transfered, resumed transfer already
- complete */
};
/*