2007-11-08 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Changed CheckIntegrityEntry interface so that it can define
	the action when all the chunk checksums are valid.
	* src/CheckIntegrityEntry.h
	* src/StreamCheckIntegrityEntry.{h, cc}
	* src/BtCheckIntegrityEntry.{h, cc}: Currently,when all the 
checksums
	are valid, then aira2 goes to seeding mode. Sometimes it is 
better
	to exit rather than doing seeding. So, it would be good to 
toggle this
	behavior.
	* src/CheckIntegrityCommand.cc
	* src/AbstractCommand.cc
	* src/RequestGroup.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2007-11-08 10:59:44 +00:00
parent b4f7588ba2
commit 76b9093d09
10 changed files with 46 additions and 10 deletions

View file

@ -57,7 +57,9 @@ public:
virtual ~StreamCheckIntegrityEntry();
virtual Commands prepareForNextAction(DownloadEngine* e);
virtual Commands onDownloadFinished(DownloadEngine* e);
virtual Commands onDownloadIncomplete(DownloadEngine* e);
};
typedef SharedHandle<StreamCheckIntegrityEntry> StreamCheckIntegrityEntryHandle;