mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Wrap Command object in std::unique_ptr
This commit is contained in:
parent
bb5b7eeedb
commit
fa9f3fb5a3
103 changed files with 555 additions and 713 deletions
|
@ -53,17 +53,17 @@ struct HttpRequestConnectChain : public ControlChain<ConnectCommand*> {
|
|||
(new SocketRecvBuffer(t->getSocket()));
|
||||
std::shared_ptr<HttpConnection> httpConnection
|
||||
(new HttpConnection(t->getCuid(), t->getSocket(), socketRecvBuffer));
|
||||
HttpRequestCommand* c = new HttpRequestCommand(t->getCuid(),
|
||||
t->getRequest(),
|
||||
t->getFileEntry(),
|
||||
t->getRequestGroup(),
|
||||
httpConnection,
|
||||
e,
|
||||
t->getSocket());
|
||||
auto c = make_unique<HttpRequestCommand>(t->getCuid(),
|
||||
t->getRequest(),
|
||||
t->getFileEntry(),
|
||||
t->getRequestGroup(),
|
||||
httpConnection,
|
||||
e,
|
||||
t->getSocket());
|
||||
c->setProxyRequest(t->getProxyRequest());
|
||||
c->setStatus(Command::STATUS_ONESHOT_REALTIME);
|
||||
e->setNoWait(true);
|
||||
e->addCommand(c);
|
||||
e->addCommand(std::move(c));
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue