* PeerInteractionCommand.cc: added a call to

TorrentMan::unadvertisePiece in Destructor.
	* PeerInteractionCommand.cc: make have message sent immediately
	if the size of pending message queue is zero.
	* TorrentMan.cc: set the maximum size of peer list to 250.
	* TorrentMan.h: changed the container type of Peers and 
UsedPieces
	to deque.
	* Util.cc: fixed rangedFileCopy.
	* AbstractDiskWriter.{h,cc}: moved digest context initialization
	to Constructor. Also, moved digest cleanup to Destructor.
	* MetaFileUtil.cc: fixed memory leak
This commit is contained in:
Tatsuhiro Tsujikawa 2006-03-22 15:10:03 +00:00
parent bf336caa83
commit 26aa28acb3
8 changed files with 108 additions and 46 deletions

View file

@ -23,11 +23,18 @@
#define _D_ABSTRACT_DISK_WRITER_H_
#include "DiskWriter.h"
#ifdef HAVE_LIBSSL
#include <openssl/evp.h>
#endif // HAVE_LIBSSL
class AbstractDiskWriter:public DiskWriter {
protected:
int fd;
#ifdef HAVE_LIBSSL
EVP_MD_CTX ctx;
#endif // HAVE_LIBSSL
void createFile(string filename, int addFlags = 0);
void writeDataInternal(const char* data, int len);