mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2007-10-12 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Implemented BitTorrent/http/ftp integrated download. I've rewritten lots of files and now some headers have forward class declarations to reduce compile time. The implementation is extremely alpha stage, I recommend to use this for testing purpose only.
This commit is contained in:
parent
e26bbbb9ee
commit
048a2cf597
252 changed files with 8646 additions and 5343 deletions
|
@ -33,12 +33,26 @@
|
|||
*/
|
||||
/* copyright --> */
|
||||
#include "RequestGroupEntry.h"
|
||||
#include "DownloadCommand.h"
|
||||
#include "RequestGroup.h"
|
||||
#include "Command.h"
|
||||
|
||||
RequestGroupEntry::RequestGroupEntry(RequestGroup* requestGroup,
|
||||
Command* nextCommand):
|
||||
_requestGroup(requestGroup),
|
||||
_nextCommand(nextCommand)
|
||||
{
|
||||
_requestGroup->increaseNumCommand();
|
||||
}
|
||||
|
||||
RequestGroupEntry::~RequestGroupEntry()
|
||||
{
|
||||
if(_shouldAddNumConnection) {
|
||||
--_requestGroup->numConnection;
|
||||
}
|
||||
delete _nextDownloadCommand;
|
||||
_requestGroup->decreaseNumCommand();
|
||||
delete _nextCommand;
|
||||
}
|
||||
|
||||
Command* RequestGroupEntry::popNextCommand()
|
||||
{
|
||||
Command* temp = _nextCommand;
|
||||
_nextCommand = 0;
|
||||
return temp;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue