aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-13 09:21:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-13 09:21:08 +0000
commit3c63e1d8d98be4ab385a7d279ae8645d8b4ad4de (patch)
tree7b5c955369b32307f77b934f37035c7edb70d196 /lib/urldata.h
parentcae555c977eb1ba14483b22ad7c76ef3cefdeb41 (diff)
Added 'dont_check' to be set during an FTP operation if the final status
message is supposed to be ignored.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 209bf531d..e9486fdb0 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -179,7 +179,9 @@ struct FTP {
char *entrypath; /* the PWD reply when we logged on */
char *cache; /* data cache between getresponse()-calls */
- size_t cache_size; /* size of cache in bytes */
+ 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 */
};
/****************************************************************************