diff options
author | Alex Borisov <b0ric.alex@gmail.com> | 2012-02-02 00:33:44 +0200 |
---|---|---|
committer | Alex Borisov <b0ric.alex@gmail.com> | 2012-02-02 00:33:44 +0200 |
commit | 873642c0d898f3152b251a783bf4cdef47070d4c (patch) | |
tree | f271bf4f62122f21dd32c27fb62d80f60bc0c54c /client/SslClient.h | |
parent | f381a83786d233ca183f3d45f892c4f064a77a58 (diff) |
FIX: implement async connection requests
Diffstat (limited to 'client/SslClient.h')
-rw-r--r-- | client/SslClient.h | 6 |
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 |