mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Use std::vector instead of std::map for ContextAttribute objects
Now key for ContextAttribute object store is int instead of string.
This commit is contained in:
parent
0030025bb6
commit
e2340efe27
25 changed files with 116 additions and 68 deletions
|
@ -72,7 +72,7 @@ public:
|
|||
dctx_.reset(new DownloadContext());
|
||||
SharedHandle<TorrentAttribute> torrentAttrs(new TorrentAttribute());
|
||||
torrentAttrs->infoHash = std::string(vbegin(infoHash), vend(infoHash));
|
||||
dctx_->setAttribute(bittorrent::BITTORRENT, torrentAttrs);
|
||||
dctx_->setAttribute(CTX_ATTR_BT, torrentAttrs);
|
||||
const SharedHandle<FileEntry> fileEntries[] = {
|
||||
SharedHandle<FileEntry>(new FileEntry("/path/to/file",totalLength,0))
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue