summaryrefslogtreecommitdiff
path: root/server/include/api_module_downloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/include/api_module_downloader.h')
-rw-r--r--server/include/api_module_downloader.h5
1 files changed, 3 insertions, 2 deletions
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<std::string, std::string> info_map; //any additional info provided by downloader module can be stored here
std::list<download_content_entry_s> content; //download content can be set for download, structure described above
};