mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
2007-12-26 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Allocate bitfield in Peer when it is really used. More specifically, bitfield in Peer is allocated after the connection is established and deallocated when the connection is dropped. Since 2 parameters(piece length and total length) was removed from the constructor of Peer class, many test classes were modified accordingly. See svn log for more detailed information. * src/PeerInteractionCommand.cc * src/CompactPeerListProcessor.cc * src/Peer.cc * src/DefaultPeerListProcessor.cc * src/PeerListenCommand.cc * src/PeerReceiveHandshakeCommand.cc Fixed memory leak * src/Piece.cc
This commit is contained in:
parent
eed41706fc
commit
e39f7a7e9c
33 changed files with 145 additions and 295 deletions
|
@ -98,7 +98,7 @@ public:
|
|||
BtRegistry::registerPieceStorage(btContext->getInfoHashAsString(),
|
||||
pieceStorage);
|
||||
|
||||
peer = new Peer("host", 6969, btContext->getPieceLength(), btContext->getTotalLength());
|
||||
peer = new Peer("host", 6969);
|
||||
|
||||
BtRegistry::registerPeerObjectCluster(btContext->getInfoHashAsString(),
|
||||
new PeerObjectCluster());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue