mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Added DHT functionality, compatible with mainline. DHT is disabled by default. To enable it, give --enable-dht to aria2c. You may need to specify entry point to DHT network using --dht-entry-point. DHT uses UDP port to listen incoming message. Use --dht-listen-port to specify port number. Make sure that your firewall configuration can pass through UDP traffic to the port. The routing table is saved in $HOME/.aria2/dht.dat. * src/DHT* * src/BNode.{h, cc} * src/PeerInteractionCommand.cc: enable DHT functionality for a particular torrent. * src/Data.cc: Rewritten ctor. * src/OptionHandlerFactory.cc: Added --enable-dht, --dht-listen-port, --dht-entry-point. * src/DefaultBtInteractive.cc: Send port message if dht is enabled. * src/RequestGroup.cc: Initialize DHT functionality. When download ends, remove BtContext from DHTPeerAnnounceStorage. * src/BtPortMessage.{h, cc}: Rewritten. * src/message.h * src/OptionHandlerImpl.cc * src/option_processing.cc: Added --enable-dht, --dht-listen-port, --dht-entry-point. * src/Dictionary.{h, cc} (remove): New function. * src/prefs.h * src/DefaultBtMessageFactory.h * src/BtHandshakeMessage.cc * src/ActivePeerConnectionCommand.cc * src/SocketCore.{h, cc}: Added datagram socket support. * src/DefaultBtMessageFactory.cc * src/BtSetup.cc: Add BtContext to DHTPeerAnnounceStorage here. Create DHT commands. * src/BtMessageFactory.h * src/PeerMessageUtil.{h, cc}
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
#include "DHTTokenTracker.h"
|
|
#include "Exception.h"
|
|
#include "Util.h"
|
|
#include "DHTUtil.h"
|
|
#include "DHTConstants.h"
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class DHTTokenTrackerTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DHTTokenTrackerTest);
|
|
CPPUNIT_TEST(testGenerateToken);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void setUp() {}
|
|
|
|
void tearDown() {}
|
|
|
|
void testGenerateToken();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTTokenTrackerTest);
|
|
|
|
void DHTTokenTrackerTest::testGenerateToken()
|
|
{
|
|
unsigned char infohash[DHT_ID_LENGTH];
|
|
DHTUtil::generateRandomData(reinterpret_cast<char*>(infohash), DHT_ID_LENGTH);
|
|
string ipaddr = "192.168.0.1";
|
|
uint16_t port = 6881;
|
|
|
|
DHTTokenTracker tracker;
|
|
string token = tracker.generateToken(infohash, ipaddr, port);
|
|
CPPUNIT_ASSERT(tracker.validateToken(token, infohash, ipaddr, port));
|
|
|
|
tracker.updateTokenSecret();
|
|
CPPUNIT_ASSERT(tracker.validateToken(token, infohash, ipaddr, port));
|
|
string newtoken = tracker.generateToken(infohash, ipaddr, port);
|
|
tracker.updateTokenSecret();
|
|
CPPUNIT_ASSERT(!tracker.validateToken(token, infohash, ipaddr, port));
|
|
CPPUNIT_ASSERT(tracker.validateToken(newtoken, infohash, ipaddr, port));
|
|
}
|