mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
* 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:
parent
bf336caa83
commit
26aa28acb3
8 changed files with 108 additions and 46 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue