mirror of https://github.com/aria2/aria2
2008-05-07 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
const SharedHandle<Request> -> const SharedHandle<Request>& * src/FtpDowndloadCommand.cc * src/FtpDowndloadCommand.h * src/HttpDownloadCommand.cc * src/HttpDownloadCommand.hpull/1/head
parent
874714609f
commit
53464fd0fc
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
||||||
|
2008-05-07 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
|
const SharedHandle<Request> -> const SharedHandle<Request>&
|
||||||
|
* src/FtpDowndloadCommand.cc
|
||||||
|
* src/FtpDowndloadCommand.h
|
||||||
|
* src/HttpDownloadCommand.cc
|
||||||
|
* src/HttpDownloadCommand.h
|
||||||
|
|
||||||
|
2008-05-05 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
|
Enabled --enable-http-keep-alive by default.
|
||||||
|
* src/option_processing.cc
|
||||||
|
|
||||||
2008-05-05 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
2008-05-05 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
Fixed the bug that the control file(.aria2 file) is not renamed
|
Fixed the bug that the control file(.aria2 file) is not renamed
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
namespace aria2 {
|
namespace aria2 {
|
||||||
|
|
||||||
FtpDownloadCommand::FtpDownloadCommand(int cuid,
|
FtpDownloadCommand::FtpDownloadCommand(int cuid,
|
||||||
const RequestHandle req,
|
const RequestHandle& req,
|
||||||
RequestGroup* requestGroup,
|
RequestGroup* requestGroup,
|
||||||
DownloadEngine* e,
|
DownloadEngine* e,
|
||||||
const SocketHandle& dataSocket,
|
const SocketHandle& dataSocket,
|
||||||
|
|
|
@ -46,7 +46,7 @@ private:
|
||||||
SharedHandle<SocketCore> ctrlSocket;
|
SharedHandle<SocketCore> ctrlSocket;
|
||||||
public:
|
public:
|
||||||
FtpDownloadCommand(int cuid,
|
FtpDownloadCommand(int cuid,
|
||||||
const SharedHandle<Request> req,
|
const SharedHandle<Request>& req,
|
||||||
RequestGroup* requestGroup,
|
RequestGroup* requestGroup,
|
||||||
DownloadEngine* e,
|
DownloadEngine* e,
|
||||||
const SharedHandle<SocketCore>& dataSocket,
|
const SharedHandle<SocketCore>& dataSocket,
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
namespace aria2 {
|
namespace aria2 {
|
||||||
|
|
||||||
HttpDownloadCommand::HttpDownloadCommand(int cuid,
|
HttpDownloadCommand::HttpDownloadCommand(int cuid,
|
||||||
const RequestHandle req,
|
const RequestHandle& req,
|
||||||
RequestGroup* requestGroup,
|
RequestGroup* requestGroup,
|
||||||
const HttpConnectionHandle& httpConnection,
|
const HttpConnectionHandle& httpConnection,
|
||||||
DownloadEngine* e,
|
DownloadEngine* e,
|
||||||
|
|
|
@ -49,7 +49,7 @@ protected:
|
||||||
virtual bool prepareForNextSegment();
|
virtual bool prepareForNextSegment();
|
||||||
public:
|
public:
|
||||||
HttpDownloadCommand(int cuid,
|
HttpDownloadCommand(int cuid,
|
||||||
const SharedHandle<Request> req,
|
const SharedHandle<Request>& req,
|
||||||
RequestGroup* requestGroup,
|
RequestGroup* requestGroup,
|
||||||
const SharedHandle<HttpConnection>& httpConnection,
|
const SharedHandle<HttpConnection>& httpConnection,
|
||||||
DownloadEngine* e,
|
DownloadEngine* e,
|
||||||
|
|
Loading…
Reference in New Issue