mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
2008-03-07 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Use unsigned char for data store.
This commit is contained in:
parent
7578d5fb22
commit
fc0fa4203a
86 changed files with 378 additions and 312 deletions
|
@ -26,7 +26,7 @@ CPPUNIT_TEST_SUITE_REGISTRATION(DHTTokenTrackerTest);
|
|||
void DHTTokenTrackerTest::testGenerateToken()
|
||||
{
|
||||
unsigned char infohash[DHT_ID_LENGTH];
|
||||
DHTUtil::generateRandomData(reinterpret_cast<char*>(infohash), DHT_ID_LENGTH);
|
||||
DHTUtil::generateRandomData(infohash, DHT_ID_LENGTH);
|
||||
std::string ipaddr = "192.168.0.1";
|
||||
uint16_t port = 6881;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue