PDA

View Full Version : Implement a secure FTP client using Qt



yren
13th August 2010, 23:50
Is there a way to implement a secure FTP in Qt? If there is, please post some clues!

Thanks!
Yi

Lykurg
13th August 2010, 23:58
In the docs, you will find:

FTP Example
Secure Socket Client Example
Torrent Example
QSslSocket


And of course you can have a look in the sources of the various ftp client for KDE which all uses Qt.

piotr.dobrogost
26th December 2010, 23:26
FTP Example uses QFtp class which can't use user supplied socket. That's why it's not possible to use QSslSocket with QFtp to get FTP over SSL (FTPS).

bob2oneil
1st March 2012, 05:50
Anybody have success in implementing a secure FTP client using Qt, perhaps by deriving a class from QFtp, or replacing the socket with a QSslSocket?