mirror of https://github.com/aria2/aria2
2009-07-05 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed compile error regarding BUFSIZE. * src/DownloadCommand.cc * src/DownloadCommand.hpull/1/head
parent
4595e0262d
commit
a94215654d
|
@ -1,3 +1,9 @@
|
|||
2009-07-05 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Fixed compile error regarding BUFSIZE.
|
||||
* src/DownloadCommand.cc
|
||||
* src/DownloadCommand.h
|
||||
|
||||
2009-07-05 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||
|
||||
Documented tellWaiting xml-rpc method in man page.
|
||||
|
|
|
@ -64,6 +64,8 @@
|
|||
|
||||
namespace aria2 {
|
||||
|
||||
static const size_t BUFSIZE = 16*1024;
|
||||
|
||||
DownloadCommand::DownloadCommand(int cuid,
|
||||
const RequestHandle& req,
|
||||
const SharedHandle<FileEntry>& fileEntry,
|
||||
|
|
|
@ -47,8 +47,6 @@ class MessageDigestContext;
|
|||
|
||||
class DownloadCommand : public AbstractCommand {
|
||||
private:
|
||||
static const size_t BUFSIZE = 16*1024;
|
||||
|
||||
unsigned char* _buf;
|
||||
|
||||
time_t startupIdleTime;
|
||||
|
|
Loading…
Reference in New Issue