From 1fdf82ec8346c12d19c9a013080ca4c26a3cb6d6 Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Tue, 25 Aug 2015 13:17:30 +0300 Subject: protocol: use int32 instead of strings for id's in structures server: curl module: work in progress --- server/include/api_module_downloader.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'server/include/api_module_downloader.h') diff --git a/server/include/api_module_downloader.h b/server/include/api_module_downloader.h index 7c68cad..872430d 100644 --- a/server/include/api_module_downloader.h +++ b/server/include/api_module_downloader.h @@ -75,8 +75,9 @@ struct download_content_entry_s { //here is basic content entry description, thi struct download_s { - std::string id, name; //id generated via download_add or via session restore and it's unique for current session and current dowloader - int64_t size, downloaded; //download size and size of downloaded data + int id; + std::string name; //id generated via download_add or via session restore and it's unique for current session and current dowloader + int64_t size, downloaded, download_speed; //download size and size of downloaded data, also download speed all vars in bytes std::map info_map; //any additional info provided by downloader module can be stored here std::list content; //download content can be set for download, structure described above }; -- cgit v1.2.3