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:
Tatsuhiro Tsujikawa 2007-12-26 14:26:55 +00:00
parent eed41706fc
commit e39f7a7e9c
33 changed files with 145 additions and 295 deletions

View file

@ -35,7 +35,7 @@ public:
BtRegistry::registerBtRuntime(_btContext->getInfoHashAsString(),
btRuntime);
_peer = new Peer("192.168.0.1", 6969, 16*1024, 256*1024);
_peer = new Peer("192.168.0.1", 6969);
_peer->setExtension("ut_pex", 1);
}