From 368cb1d14f184bc0ddbdc299e6655195b3a7d288 Mon Sep 17 00:00:00 2001 From: Alex Borisov Date: Tue, 15 Nov 2011 00:56:47 +0200 Subject: Welcome message. Docs update --- client/SslClient.h | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) (limited to 'client/SslClient.h') 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 }; /** -- cgit v1.2.3