mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
IPv6 support for SocketCore class. TODO: In SocketCore::establishConnection(), this is insufficient to determin the failure of connect() here because the socket is non-blocking state. The next addresses should be tried after select(). TODO: NameResolver still uses c-ares(<= 1.4) ares_gethostbyname(). If c-ares 1.5 or newer is installed, ares_getaddrinfo() should be used instead which address family independent. TODO: DHTRoutingTable{Deserializer,Serializer} currently saves peer information in a compact peer format which is for IPv4 only. Some BitTorrent functions in PeerMessageUtil still depends on IPv4 but this is a spec of BitTorrent protocol. * src/SocketCore.{h, cc} * src/PeerMessageUtil.cc * test/SocketCoreTest.cc * test/PeerMessageUtilTest.cc * test/DHTConnectionImplTest.cc Handle IPv4-mapped addresses. * src/DHTNode.cc: Now identity is determined by node id. * src/DHTMessageTrackerEntry.cc Because now PeerMessageUtil::unpackcompact() could fail, the caller should handle it. * src/DHTRoutingTableDeserializer.cc * src/DHTMessageFactoryImpl.cc
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#include "DHTConnectionImpl.h"
|
|
#include "Exception.h"
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace aria2 {
|
|
|
|
class DHTConnectionImplTest:public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE(DHTConnectionImplTest);
|
|
CPPUNIT_TEST(testWriteAndReadData);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
public:
|
|
void setUp() {}
|
|
|
|
void tearDown() {}
|
|
|
|
void testWriteAndReadData();
|
|
};
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(DHTConnectionImplTest);
|
|
|
|
void DHTConnectionImplTest::testWriteAndReadData()
|
|
{
|
|
try {
|
|
DHTConnectionImpl con1;
|
|
/*uint16_t con1port =*/ con1.bind(0);
|
|
DHTConnectionImpl con2;
|
|
uint16_t con2port = con2.bind(0);
|
|
|
|
std::string message1 = "hello world.";
|
|
con1.sendMessage(message1.c_str(), message1.size(), "127.0.0.1", con2port);
|
|
|
|
char readbuffer[100];
|
|
std::string remoteHost;
|
|
uint16_t remotePort;
|
|
{
|
|
ssize_t rlength = con2.receiveMessage(readbuffer, sizeof(readbuffer), remoteHost, remotePort);
|
|
CPPUNIT_ASSERT_EQUAL((ssize_t)message1.size(), rlength);
|
|
readbuffer[rlength] = '\0';
|
|
CPPUNIT_ASSERT_EQUAL(message1, std::string(readbuffer));
|
|
}
|
|
} catch(Exception* e) {
|
|
std::cerr << *e << std::endl;
|
|
delete e;
|
|
CPPUNIT_FAIL("exception thrown");
|
|
}
|
|
}
|
|
|
|
} // namespace aria2
|