How to program in qt4 with TcpSocket and TcpServer for impliementing a Ftp Server?
Printable View
How to program in qt4 with TcpSocket and TcpServer for impliementing a Ftp Server?
Easy, there is a lot of documentation that comes with Qt that covers basic QTcpSocket and QTcpServer usage:
http://doc.trolltech.com/4.5/qtnetwork.html
Plus there is documentation about the FTP protocol all over the web.
What do you want to do, anyway? It might be a better idea to use an existing, proven FTP server and hook it to your application in most cases.
Basti
you also may take a look at this example QTDIR/examples/network/ftp. :)