mirror of
https://github.com/aria2/aria2.git
synced 2026-04-11 23:39:05 +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}
70 lines
1.6 KiB
C++
70 lines
1.6 KiB
C++
#include "Data.h"
|
|
#include <string>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
using namespace std;
|
|
|
|
class DataTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DataTest);
|
|
CPPUNIT_TEST(testToString);
|
|
CPPUNIT_TEST(testGetData);
|
|
CPPUNIT_TEST(testToInt);
|
|
CPPUNIT_TEST(testToLLInt);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
private:
|
|
|
|
public:
|
|
void setUp() {
|
|
}
|
|
|
|
void testToString();
|
|
void testGetData();
|
|
void testToInt();
|
|
void testToLLInt();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( DataTest );
|
|
|
|
void DataTest::testToString() {
|
|
Data data("aria2", 5);
|
|
CPPUNIT_ASSERT_EQUAL(string("aria2"), data.toString());
|
|
|
|
Data null(reinterpret_cast<const char*>(0), 0);
|
|
CPPUNIT_ASSERT_EQUAL(string(""), null.toString());
|
|
}
|
|
|
|
void DataTest::testGetData() {
|
|
Data data("aria2", 5);
|
|
CPPUNIT_ASSERT_EQUAL(0, memcmp("aria2", data.getData(), 5));
|
|
CPPUNIT_ASSERT_EQUAL((int32_t)5, data.getLen());
|
|
|
|
Data null(reinterpret_cast<const char*>(0), 0);
|
|
CPPUNIT_ASSERT_EQUAL((const char*)NULL, null.getData());
|
|
CPPUNIT_ASSERT_EQUAL((int32_t)0, null.getLen());
|
|
|
|
}
|
|
|
|
void DataTest::testToInt() {
|
|
Data data("1000", 4);
|
|
CPPUNIT_ASSERT_EQUAL((int32_t)1000, data.toInt());
|
|
|
|
Data null(reinterpret_cast<const char*>(0), 0);
|
|
CPPUNIT_ASSERT_EQUAL((int32_t)0, null.toInt());
|
|
|
|
Data alpha("abc", 3);
|
|
CPPUNIT_ASSERT_EQUAL((int32_t)0, alpha.toInt());
|
|
}
|
|
|
|
void DataTest::testToLLInt() {
|
|
Data data("1000", 4);
|
|
CPPUNIT_ASSERT_EQUAL(1000, (int)data.toLLInt());
|
|
|
|
Data null(reinterpret_cast<const char*>(0), 0);
|
|
CPPUNIT_ASSERT_EQUAL(0, (int)null.toLLInt());
|
|
|
|
Data alpha("abc", 3);
|
|
CPPUNIT_ASSERT_EQUAL(0, (int)alpha.toLLInt());
|
|
}
|