mirror of
https://github.com/glest/glest-source.git
synced 2025-08-18 22:21:18 +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:
@@ -174,7 +174,7 @@ extern int ftpRemoveFile(const char* path);
|
||||
#endif
|
||||
extern int ftpMakeDir(const char* path);
|
||||
extern int ftpRemoveDir(const char* path);
|
||||
extern int ftpCloseSocket(socket_t s);
|
||||
extern int ftpCloseSocket(socket_t *s);
|
||||
extern int ftpSend(socket_t s, const void *data, int len);
|
||||
extern int ftpReceive(socket_t s, void *data, int len);
|
||||
extern socket_t ftpEstablishDataConnection(int passive, ip_t *ip, port_t *port, int sessionId);
|
||||
|
@@ -43,7 +43,8 @@ int ftpCreateAccount(const char* name, const char* passw, const char* root, int
|
||||
int ftpStart(int portNumber);
|
||||
int ftpShutdown(void);
|
||||
int ftpExecute(void);
|
||||
int ftpState(void);
|
||||
int ftpState(void);
|
||||
void ftpSignalShutdown(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Reference in New Issue
Block a user