diff options
Diffstat (limited to 'server/include/api_module_downloader.h')
-rw-r--r-- | server/include/api_module_downloader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/include/api_module_downloader.h b/server/include/api_module_downloader.h index 9e42715..ba6cb6a 100644 --- a/server/include/api_module_downloader.h +++ b/server/include/api_module_downloader.h @@ -78,9 +78,9 @@ struct download_content_entry_s { //here is basic content entry description, thi struct download_s { - int id; //id generated via download_add or via session restore and it's unique for current session and current dowloader + int id = -1; //id generated via download_add or via session restore and it's unique for current session and current dowloader std::string name; - int64_t size, downloaded, download_speed; //download size and size of downloaded data, also download speed all vars in bytes + int64_t size = 0, downloaded = 0, download_speed = 0; //download size and size of downloaded data, also download speed all vars in bytes std::map<int, 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 std::map<std::string, std::string> metadata; //client defined metadata map |