mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
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:
parent
51ba780c76
commit
436448dd8a
8 changed files with 41 additions and 29 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue