Add support for FTPS upload and download in RDCatch.

cURL supports 'ftps://' URLs so this change was trivial.
This commit is contained in:
David Klann
2020-08-15 21:11:41 -05:00
parent afb3832f72
commit 7d60274573
6 changed files with 11 additions and 5 deletions

View File

@@ -82,6 +82,7 @@ QStringList RDDownload::supportedSchemes() const
schemes.push_back("file");
schemes.push_back("ftp");
schemes.push_back("ftps");
schemes.push_back("http");
schemes.push_back("https");
schemes.push_back("sftp");