mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Eliminated inet_ntoa and inet_ntop. Use getnameinfo() instead.
This commit is contained in:
parent
af46293ef9
commit
3c73b6e767
12 changed files with 41 additions and 85 deletions
|
@ -20,9 +20,7 @@ class DHTRoutingTableSerializerTest:public CppUnit::TestFixture {
|
|||
|
||||
CPPUNIT_TEST_SUITE(DHTRoutingTableSerializerTest);
|
||||
CPPUNIT_TEST(testSerialize);
|
||||
#ifdef HAVE_INET_NTOP
|
||||
CPPUNIT_TEST(testSerialize6);
|
||||
#endif // HAVE_INET_NTOP
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
private:
|
||||
char zero[256];
|
||||
|
@ -226,7 +224,6 @@ void DHTRoutingTableSerializerTest::testSerialize()
|
|||
CPPUNIT_ASSERT(ss.eof());
|
||||
}
|
||||
|
||||
#ifdef HAVE_INET_NTOP
|
||||
void DHTRoutingTableSerializerTest::testSerialize6()
|
||||
{
|
||||
SharedHandle<DHTNode> localNode(new DHTNode());
|
||||
|
@ -316,6 +313,5 @@ void DHTRoutingTableSerializerTest::testSerialize6()
|
|||
CPPUNIT_ASSERT_EQUAL((std::streamsize)0, ss.gcount());
|
||||
CPPUNIT_ASSERT(ss.eof());
|
||||
}
|
||||
#endif // HAVE_INET_NTOP
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue