FtpStorTimeout(FTP *, char *command, char *inp, char *out, long time)
Sends body of the local file inp to the server, and stores it in the file out. The ``time'', is maximum time needed to transfer one character to the server.
FtpStor(FTP *, char *command, char *inp, char* out)
Calls FtpStorTimeout, without timeout.
FtpPutTimeout(FTP *, char *in, char *out, long time)
Transfers data from the local file inp to the server and stores it in the file out.
FtpPut(FTP *, char *in, char *out)
Calls FtpPutTimeout with turned off timeout.