mirror of
https://github.com/aria2/aria2.git
synced 2025-02-26 08:22:11 +00: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}
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
#include "DHTPingMessage.h"
|
|
#include "DHTNode.h"
|
|
#include "DHTUtil.h"
|
|
#include "BencodeVisitor.h"
|
|
#include "Dictionary.h"
|
|
#include "Data.h"
|
|
#include "Exception.h"
|
|
#include "Util.h"
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class DHTPingMessageTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DHTPingMessageTest);
|
|
CPPUNIT_TEST(testGetBencodedMessage);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void setUp() {}
|
|
|
|
void tearDown() {}
|
|
|
|
void testGetBencodedMessage();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTPingMessageTest);
|
|
|
|
void DHTPingMessageTest::testGetBencodedMessage()
|
|
{
|
|
DHTNodeHandle localNode = new DHTNode();
|
|
DHTNodeHandle remoteNode = new DHTNode();
|
|
|
|
char tid[DHT_TRANSACTION_ID_LENGTH];
|
|
DHTUtil::generateRandomData(tid, DHT_TRANSACTION_ID_LENGTH);
|
|
string transactionID(&tid[0], &tid[DHT_TRANSACTION_ID_LENGTH]);
|
|
|
|
DHTPingMessage msg(localNode, remoteNode, transactionID);
|
|
|
|
string msgbody = msg.getBencodedMessage();
|
|
|
|
SharedHandle<Dictionary> cm = new Dictionary();
|
|
cm->put("t", new Data(transactionID));
|
|
cm->put("y", new Data("q"));
|
|
cm->put("q", new Data("ping"));
|
|
Dictionary* a = new Dictionary();
|
|
cm->put("a", a);
|
|
a->put("id", new Data(reinterpret_cast<const char*>(localNode->getID()), DHT_ID_LENGTH));
|
|
|
|
BencodeVisitor v;
|
|
cm->accept(&v);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(v.getBencodedData(), msgbody);
|
|
}
|