diff options
Diffstat (limited to 'client/SslClient.h')
-rw-r--r-- | client/SslClient.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client/SslClient.h b/client/SslClient.h index 3c4976c..41f0952 100644 --- a/client/SslClient.h +++ b/client/SslClient.h @@ -82,7 +82,8 @@ public: /** * @brief Request file upload (the list of this files is obtained via RequestType::UploadList) * @note Request should contain file path as specified in RequestType::UploadList<br/> - * Reply data is split into 4k parts and sent one by one + * Reply data is split into 4k packets and sent one by one<br/> + * (4k packet is a Qt limitation; see qabstractsocket.cpp QAbstractSocketPrivate::readFromSocket()) */ RegularFile = 0x12 }; @@ -148,7 +149,7 @@ protected: QString server; private: - static QSslSocket sslSocket; + QSslSocket sslSocket; unsigned short port; }; |