diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-11-15 00:56:47 +0200 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-11-15 00:56:47 +0200 |
commit | 368cb1d14f184bc0ddbdc299e6655195b3a7d288 (patch) | |
tree | 693df1b371e1d90a1f2af97c58e9cb095c3312d7 /client/SslClient.h | |
parent | b8a4ef60a8fdde02460d329c8b5caac414c38ebd (diff) |
Welcome message. Docs update
Diffstat (limited to 'client/SslClient.h')
-rw-r--r-- | client/SslClient.h | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/client/SslClient.h b/client/SslClient.h index ecf4edd..d31af70 100644 --- a/client/SslClient.h +++ b/client/SslClient.h @@ -32,6 +32,7 @@ class SslClient: public QObject public: /** * @enum RequestType Enumerates all possible request types + * @note All code values higher then 0x10 are meant to request binary file data */ enum RequestType { @@ -46,11 +47,32 @@ public: /** * @brief Request static proxy list */ - StaticProxyList = 0x04, + StaticProxyList = 0x03, /** - * @brief Request list of firewalled hosts + * @brief Request list of firewall rules */ - FirewallList = 0x08 + FirewallList = 0x04, + /** + * @brief Request list of files that should exist on client PC + */ + UploadList = 0x05, + /** + * @brief Request list of files to be deleted on client PC + */ + DeleteList = 0x06, + /** + * @brief Request most recent available client version + */ + ClientVersion = 0x07, + /** + * @brief Request client binary file + */ + ClientBinary = 0x11, + /** + * @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 + */ + RegularFile = 0x12 }; /** |