diff -r ef0373b55136 -r 758a864f9613 tests/qtp/qtp_qftp/ftpserver.h --- a/tests/qtp/qtp_qftp/ftpserver.h Fri Sep 17 08:34:18 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,40 +0,0 @@ -#ifndef FTPSERVER_H -#define FTPSERVER_H - -#include -#include - - class ftpServer : public QTcpServer // , public QThread - { - Q_OBJECT - - public: - ftpServer( QObject *parent = 0 ); - ~ftpServer(); - - bool isDone(); -// void run(); -/* -private: - void sendSomething( QTcpSocket *outSock, quint16 port ); -*/ -private slots: - void handleNewConnection(); - void readConnection(); - void displayConnectionError(QAbstractSocket::SocketError socketError); - - void readDataConnection(); - void handleNewDataConnection(); - void displayDataConnectionError(QAbstractSocket::SocketError socketError); - - private: - QTcpServer *tcpServer; - QTcpSocket *ftpSocket; - - QTcpServer *dataServer; - QTcpSocket *dataSocket; - - bool not_done; -}; - -#endif // FTPSERVER_H