mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Use constexpr for macros defined in BtConstants.h
This commit is contained in:
parent
95f2c00c71
commit
f5ff5da9da
4 changed files with 20 additions and 21 deletions
|
@ -886,17 +886,17 @@ void BittorrentHelperTest::testExtract2PeersFromList()
|
|||
void BittorrentHelperTest::testPackcompact()
|
||||
{
|
||||
unsigned char compact[COMPACT_LEN_IPV6];
|
||||
CPPUNIT_ASSERT_EQUAL(18,
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)18,
|
||||
packcompact(compact,
|
||||
"1002:1035:4527:3546:7854:1237:3247:3217",
|
||||
6881));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("100210354527354678541237324732171ae1"),
|
||||
util::toHex(compact, 18));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(6, packcompact(compact, "192.168.0.1", 6881));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)6, packcompact(compact, "192.168.0.1", 6881));
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("c0a800011ae1"), util::toHex(compact, 6));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(0, packcompact(compact, "badaddr", 6881));
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)0, packcompact(compact, "badaddr", 6881));
|
||||
}
|
||||
|
||||
void BittorrentHelperTest::testUnpackcompact()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue