-rw-r--r-- | libkdepim/ksyncmanager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libkdepim/ksyncmanager.h b/libkdepim/ksyncmanager.h index 53c611d..604adb8 100644 --- a/libkdepim/ksyncmanager.h +++ b/libkdepim/ksyncmanager.h | |||
@@ -49,30 +49,32 @@ class KServerSocket : public QServerSocket | |||
49 | KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); | 49 | KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); |
50 | 50 | ||
51 | void newConnection ( int socket ) ; | 51 | void newConnection ( int socket ) ; |
52 | void setFileName( QString fn ) {mFileName = fn;}; | 52 | void setFileName( QString fn ) {mFileName = fn;}; |
53 | signals: | 53 | signals: |
54 | void file_received( bool ); | 54 | void file_received( bool ); |
55 | void request_file(); | 55 | void request_file(); |
56 | void file_received( bool, const QString &); | 56 | void file_received( bool, const QString &); |
57 | void request_file(const QString &); | 57 | void request_file(const QString &); |
58 | void saveFile(); | 58 | void saveFile(); |
59 | void endConnect(); | 59 | void endConnect(); |
60 | private slots: | 60 | private slots: |
61 | void waitForSocketFinish(); | ||
61 | void discardClient(); | 62 | void discardClient(); |
62 | void deleteSocket(); | 63 | void deleteSocket(); |
63 | void readClient(); | 64 | void readClient(); |
64 | void displayErrorMessage(); | 65 | void displayErrorMessage(); |
65 | void readBackFileFromSocket(); | 66 | void readBackFileFromSocket(); |
66 | private : | 67 | private : |
68 | int mPendingConnect; | ||
67 | QString mResource; | 69 | QString mResource; |
68 | int mErrorMessage; | 70 | int mErrorMessage; |
69 | bool blockRC; | 71 | bool blockRC; |
70 | void send_file(); | 72 | void send_file(); |
71 | void get_file(); | 73 | void get_file(); |
72 | void end_connect(); | 74 | void end_connect(); |
73 | void error_connect( QString ); | 75 | void error_connect( QString ); |
74 | QDialog* mSyncActionDialog; | 76 | QDialog* mSyncActionDialog; |
75 | QSocket* mSocket; | 77 | QSocket* mSocket; |
76 | QString mPassWord; | 78 | QString mPassWord; |
77 | QString mFileName; | 79 | QString mFileName; |
78 | QTime piTime; | 80 | QTime piTime; |