mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Wrap BtMessage objects by std::unique_ptr instead of std::shared_ptr
This commit is contained in:
parent
abcb0745ed
commit
098f1571be
71 changed files with 816 additions and 852 deletions
|
@ -67,10 +67,10 @@ private:
|
|||
public:
|
||||
UTMetadataRequestFactory();
|
||||
|
||||
// Creates at most num of ut_metadata request message and appends
|
||||
// them to msgs. pieceStorage is used to identify missing piece.
|
||||
void create(std::vector<std::shared_ptr<BtMessage> >& msgs, size_t num,
|
||||
const std::shared_ptr<PieceStorage>& pieceStorage);
|
||||
// Creates and returns at most num of ut_metadata request
|
||||
// message. pieceStorage is used to identify missing piece.
|
||||
std::vector<std::unique_ptr<BtMessage>> create
|
||||
(size_t num, const std::shared_ptr<PieceStorage>& pieceStorage);
|
||||
|
||||
void setDownloadContext(const std::shared_ptr<DownloadContext>& dctx)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue