2009-10-05 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Included version number in Peer ID and client version.  Peer ID
	now starts with "aria2/VERSION-", where VERSION is
	MAJOR.MINOR.MICRO. Client version is aria2/VERSION.
	* src/DefaultBtInteractive.cc
	* src/OptionHandlerFactory.cc
	* src/bittorrent_helper.cc
	* src/bittorrent_helper.h
	* src/main.cc
	* src/usage_text.h
	* test/BittorrentHelperTest.cc
This commit is contained in:
Tatsuhiro Tsujikawa 2009-10-05 13:04:06 +00:00
parent 51ba780c76
commit 436448dd8a
8 changed files with 41 additions and 29 deletions

View file

@ -284,11 +284,9 @@ void BittorrentHelperTest::testGetInfoHashAsString() {
}
void BittorrentHelperTest::testGetPeerId() {
SharedHandle<DownloadContext> dctx(new DownloadContext());
CPPUNIT_ASSERT_EQUAL
(std::string("-aria-AAAAAAAAAAAAAA"),
generatePeerId("-aria-",
SharedHandle<Randomizer>(new FixedNumberRandomizer())));
std::string peerId = generatePeerId("aria2-");
CPPUNIT_ASSERT(peerId.find("aria2-") == 0);
CPPUNIT_ASSERT_EQUAL((size_t)20, peerId.size());
}
void BittorrentHelperTest::testComputeFastSet()