mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
DownloadContext::attrs_ now holds std::unique_ptr
DownloadContext::getAttribute() returns a raw pointer.
This commit is contained in:
parent
1a299c4d7c
commit
bef6236da8
29 changed files with 146 additions and 157 deletions
|
@ -42,7 +42,7 @@ public:
|
|||
dispatcher_.reset(new MockBtMessageDispatcher());
|
||||
dctx_.reset(new DownloadContext());
|
||||
std::shared_ptr<TorrentAttribute> attrs(new TorrentAttribute());
|
||||
dctx_->setAttribute(CTX_ATTR_BT, attrs);
|
||||
dctx_->setAttribute(CTX_ATTR_BT, make_unique<TorrentAttribute>());
|
||||
peer_.reset(new Peer("host", 6880));
|
||||
peer_->allocateSessionResource(0, 0);
|
||||
peer_->setExtension(ExtensionMessageRegistry::UT_METADATA, 1);
|
||||
|
@ -125,7 +125,7 @@ void UTMetadataRequestExtensionMessageTest::testDoReceivedAction_data()
|
|||
msg.setBtMessageDispatcher(dispatcher_.get());
|
||||
|
||||
size_t metadataSize = METADATA_PIECE_SIZE*2;
|
||||
std::shared_ptr<TorrentAttribute> attrs = bittorrent::getTorrentAttrs(dctx_);
|
||||
auto attrs = bittorrent::getTorrentAttrs(dctx_);
|
||||
std::string first(METADATA_PIECE_SIZE, '0');
|
||||
std::string second(METADATA_PIECE_SIZE, '1');
|
||||
attrs->metadata = first+second;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue