mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2008-03-09 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
type cleanup for allmost all remaining files.
This commit is contained in:
parent
ca3f6e57f3
commit
032c7c2808
278 changed files with 1489 additions and 1517 deletions
|
@ -46,8 +46,8 @@ public:
|
|||
this->slot = slot;
|
||||
}
|
||||
|
||||
virtual RequestSlot getOutstandingRequest(int32_t index, int32_t begin,
|
||||
int32_t length) {
|
||||
virtual RequestSlot getOutstandingRequest(size_t index, uint32_t begin,
|
||||
size_t length) {
|
||||
if(slot.getIndex() == index && slot.getBegin() == begin &&
|
||||
slot.getLength() == length) {
|
||||
return slot;
|
||||
|
@ -107,10 +107,10 @@ void BtRejectMessageTest::testCreate() {
|
|||
PeerMessageUtil::setIntParam(&msg[9], 256);
|
||||
PeerMessageUtil::setIntParam(&msg[13], 1024);
|
||||
SharedHandle<BtRejectMessage> pm = BtRejectMessage::create(&msg[4], 13);
|
||||
CPPUNIT_ASSERT_EQUAL((int8_t)16, pm->getId());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)12345, pm->getIndex());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)256, pm->getBegin());
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)1024, pm->getLength());
|
||||
CPPUNIT_ASSERT_EQUAL((uint8_t)16, pm->getId());
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)12345, pm->getIndex());
|
||||
CPPUNIT_ASSERT_EQUAL((uint32_t)256, pm->getBegin());
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1024, pm->getLength());
|
||||
|
||||
// case: payload size is wrong
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue