mirror of https://github.com/aria2/aria2
2007-11-24 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Fixed: compilation fails without c-ares/ares * src/DownloadEngine.cc (addCommand): Moved outside #ifdef Generate http/ftp commands only when download is incomplete. * src/BtFileAllocationEntry.cc (prepareForNextAction)pull/1/head
parent
6d544c5827
commit
355a91cdec
|
@ -1,3 +1,11 @@
|
||||||
|
2007-11-24 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
|
Fixed: compilation fails without c-ares/ares
|
||||||
|
* src/DownloadEngine.cc (addCommand): Moved outside #ifdef
|
||||||
|
|
||||||
|
Generate http/ftp commands only when download is incomplete.
|
||||||
|
* src/BtFileAllocationEntry.cc (prepareForNextAction)
|
||||||
|
|
||||||
2007-11-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
2007-11-23 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
Corrected typo. Examples are removed since they are available in man
|
Corrected typo. Examples are removed since they are available in man
|
||||||
|
|
|
@ -46,8 +46,9 @@ BtFileAllocationEntry::~BtFileAllocationEntry() {}
|
||||||
Commands BtFileAllocationEntry::prepareForNextAction(DownloadEngine* e)
|
Commands BtFileAllocationEntry::prepareForNextAction(DownloadEngine* e)
|
||||||
{
|
{
|
||||||
Commands commands = BtSetup().setup(_requestGroup, e, e->option);
|
Commands commands = BtSetup().setup(_requestGroup, e, e->option);
|
||||||
// TODO don't integerate http/ftp when multi-file torrent
|
if(!_requestGroup->downloadFinished()) {
|
||||||
Commands streamCommands = _requestGroup->createNextCommandWithAdj(e, 0);
|
Commands streamCommands = _requestGroup->createNextCommandWithAdj(e, 0);
|
||||||
copy(streamCommands.begin(), streamCommands.end(), back_inserter(commands));
|
copy(streamCommands.begin(), streamCommands.end(), back_inserter(commands));
|
||||||
|
}
|
||||||
return commands;
|
return commands;
|
||||||
}
|
}
|
||||||
|
|
|
@ -292,6 +292,11 @@ void DownloadEngine::setStatCalc(const StatCalcHandle& statCalc)
|
||||||
_statCalc = statCalc;
|
_statCalc = statCalc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DownloadEngine::addCommand(const Commands& commands)
|
||||||
|
{
|
||||||
|
this->commands.insert(this->commands.end(), commands.begin(), commands.end());
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_ASYNC_DNS
|
#ifdef ENABLE_ASYNC_DNS
|
||||||
bool DownloadEngine::addNameResolverCheck(const NameResolverHandle& resolver,
|
bool DownloadEngine::addNameResolverCheck(const NameResolverHandle& resolver,
|
||||||
Command* command) {
|
Command* command) {
|
||||||
|
@ -322,10 +327,4 @@ bool DownloadEngine::deleteNameResolverCheck(const NameResolverHandle& resolver,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DownloadEngine::addCommand(const Commands& commands)
|
|
||||||
{
|
|
||||||
this->commands.insert(this->commands.end(), commands.begin(), commands.end());
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // ENABLE_ASYNC_DNS
|
#endif // ENABLE_ASYNC_DNS
|
||||||
|
|
Loading…
Reference in New Issue