mirror of
https://github.com/glest/glest-source.git
synced 2025-08-12 03:14:00 +02:00
- bunch of bugfixes for FTP file transfer:
- failed attempts should now properly cleanup partial downloaded files - better logging and resource usage to track down problems
This commit is contained in:
@@ -27,9 +27,10 @@ namespace Shared { namespace PlatformCommon {
|
||||
// =====================================================
|
||||
|
||||
enum FTP_Client_ResultType {
|
||||
ftp_crt_SUCCESS = 0,
|
||||
ftp_crt_FAIL = 1,
|
||||
ftp_crt_ABORTED = 2
|
||||
ftp_crt_SUCCESS = 0,
|
||||
ftp_crt_PARTIALFAIL = 1,
|
||||
ftp_crt_FAIL = 2,
|
||||
ftp_crt_ABORTED = 3
|
||||
};
|
||||
|
||||
enum FTP_Client_CallbackType {
|
||||
|
Reference in New Issue
Block a user