ftplibpp
ftplibpp copied to clipboard
Platform independent c++ library providing ftp client functionality.
Hello, I'm trying to connect to our own FTPS server but can't seem to make an encrypted connection tried other servers like "test.rebex.net" but neither does connect to with ftplibpp...
Hello, I'm using ftplibpp with OpenSSL and I'm trying to connect to a Filezilla Server with FTP over TLS (FTPS). I just found that ftplibpp can't transfer data (even if...
Hi, I spent a decent time reading the doc, but did not understand how to make a little Hello World! _(IMHO a key feature for such a distributed lib is...
Hi, I'm currently using ftplibpp to access IIS FTPS server using SSL/TLS encryption. It works great but I had one problem building it without -DNOSSL. This problem was introduced in...
hi , how to close download and upload in the middle of the process ,instead of disconnecting the FTP connection. thank you.
If one of the two allocs in the constructor fails, the code results in random memory access, and either the program will crash or the object will be left in...
ls or list command is missing. i tried setting the ftp->FtpSendCmd("LIST -aL",'2',ftp->mp_ftphandle); command to public and sending manually with no avail. are there more debug messages in a flag ?
Why do you think that only APPLE handles 64 bit variables? Proese use this fix: void ftplib::sprint_rest(char *buf, off64_t offset) { #if sizeof(offset)>4 sprintf(buf,"REST %lld",offset); #else sprintf(buf,"REST %ld",offset); #endif }...
Develop
added support for ipv6 support