Added 'dont_check' to be set during an FTP operation if the final status

message is supposed to be ignored.
This commit is contained in:
Daniel Stenberg
2002-06-13 09:21:08 +00:00
parent cae555c977
commit 3c63e1d8d9
2 changed files with 23 additions and 15 deletions

View File

@@ -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 */
};
/****************************************************************************