mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
Require -std=c++11 and use std::shared_ptr instead of SharedHandle
This commit is contained in:
parent
126a4bde61
commit
07d270c87e
709 changed files with 6305 additions and 6878 deletions
|
@ -49,9 +49,9 @@ struct HttpRequestConnectChain : public ControlChain<ConnectCommand*> {
|
|||
virtual ~HttpRequestConnectChain() {}
|
||||
virtual int run(ConnectCommand* t, DownloadEngine* e)
|
||||
{
|
||||
SharedHandle<SocketRecvBuffer> socketRecvBuffer
|
||||
std::shared_ptr<SocketRecvBuffer> socketRecvBuffer
|
||||
(new SocketRecvBuffer(t->getSocket()));
|
||||
SharedHandle<HttpConnection> httpConnection
|
||||
std::shared_ptr<HttpConnection> httpConnection
|
||||
(new HttpConnection(t->getCuid(), t->getSocket(), socketRecvBuffer));
|
||||
HttpRequestCommand* c = new HttpRequestCommand(t->getCuid(),
|
||||
t->getRequest(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue