summaryrefslogtreecommitdiff
path: root/client/SslClient.h
diff options
context:
space:
mode:
authorAlex Borisov <b0ric.alex@gmail.com>2012-02-02 00:33:44 +0200
committerAlex Borisov <b0ric.alex@gmail.com>2012-02-02 00:33:44 +0200
commit873642c0d898f3152b251a783bf4cdef47070d4c (patch)
treef271bf4f62122f21dd32c27fb62d80f60bc0c54c /client/SslClient.h
parentf381a83786d233ca183f3d45f892c4f064a77a58 (diff)
FIX: implement async connection requests
Diffstat (limited to 'client/SslClient.h')
-rw-r--r--client/SslClient.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/SslClient.h b/client/SslClient.h
index 1d3256f..b0528d6 100644
--- a/client/SslClient.h
+++ b/client/SslClient.h
@@ -48,6 +48,10 @@ public:
enum RequestType
{
/**
+ * @brief
+ */
+ Unknown = 0x00,
+ /**
* @brief Request generic config
*/
Config = 0x01,
@@ -152,6 +156,8 @@ private:
QSslSocket sslSocket;
QByteArray pkt;
unsigned short port;
+ RequestType _currentRequest;
+ string _currentFile;
};
#endif \ No newline at end of file