Removed trailing spaces

This commit is contained in:
Tatsuhiro Tsujikawa 2012-10-01 23:52:22 +09:00
parent 390b2e546e
commit 8b0c701266
238 changed files with 571 additions and 571 deletions

View file

@ -190,7 +190,7 @@ void test_wslay_event_send_fragmented_msg_with_ctrl(void)
memset(&acc, 0, sizeof(acc)); memset(&acc, 0, sizeof(acc));
ud.acc = &acc; ud.acc = &acc;
wslay_event_context_server_init(&ctx, &callbacks, &ud); wslay_event_context_server_init(&ctx, &callbacks, &ud);
memset(&arg, 0, sizeof(arg)); memset(&arg, 0, sizeof(arg));
arg.opcode = WSLAY_TEXT_FRAME; arg.opcode = WSLAY_TEXT_FRAME;
arg.source.data = &df; arg.source.data = &df;
@ -231,7 +231,7 @@ void test_wslay_event_send_ctrl_msg_first(void)
memset(&acc, 0, sizeof(acc)); memset(&acc, 0, sizeof(acc));
ud.acc = &acc; ud.acc = &acc;
wslay_event_context_server_init(&ctx, &callbacks, &ud); wslay_event_context_server_init(&ctx, &callbacks, &ud);
memset(&arg, 0, sizeof(arg)); memset(&arg, 0, sizeof(arg));
arg.opcode = WSLAY_PING; arg.opcode = WSLAY_PING;
arg.msg_length = 0; arg.msg_length = 0;

View file

@ -142,7 +142,7 @@ void AbstractDiskWriter::createFile(int addFlags)
filename_.c_str(), filename_.c_str(),
util::safeStrerror(errNum).c_str()), util::safeStrerror(errNum).c_str()),
error_code::FILE_CREATE_ERROR); error_code::FILE_CREATE_ERROR);
} }
} }
ssize_t AbstractDiskWriter::writeDataInternal(const unsigned char* data, ssize_t AbstractDiskWriter::writeDataInternal(const unsigned char* data,

View file

@ -80,7 +80,7 @@ public:
virtual void allocate(int64_t offset, int64_t length); virtual void allocate(int64_t offset, int64_t length);
virtual int64_t size(); virtual int64_t size();
virtual void enableReadOnly(); virtual void enableReadOnly();
virtual void disableReadOnly(); virtual void disableReadOnly();

View file

@ -70,7 +70,7 @@ public:
virtual int64_t size(); virtual int64_t size();
virtual void truncate(int64_t length); virtual void truncate(int64_t length);
virtual SharedHandle<FileAllocationIterator> fileAllocationIterator(); virtual SharedHandle<FileAllocationIterator> fileAllocationIterator();
// Make sure that DiskWriter is set before calling this function. // Make sure that DiskWriter is set before calling this function.
@ -78,11 +78,11 @@ public:
// Make sure that DiskWriter is set before calling this function. // Make sure that DiskWriter is set before calling this function.
virtual void disableReadOnly(); virtual void disableReadOnly();
virtual bool isReadOnlyEnabled() const { return readOnly_; } virtual bool isReadOnlyEnabled() const { return readOnly_; }
virtual void enableMmap(); virtual void enableMmap();
virtual void cutTrailingGarbage(); virtual void cutTrailingGarbage();
virtual const std::string& getFilePath() = 0; virtual const std::string& getFilePath() = 0;

View file

@ -68,7 +68,7 @@ public:
time_t interval); time_t interval);
virtual ~ActivePeerConnectionCommand(); virtual ~ActivePeerConnectionCommand();
virtual bool execute(); virtual bool execute();
void connectToPeer(const SharedHandle<Peer>& peer); void connectToPeer(const SharedHandle<Peer>& peer);

View file

@ -86,7 +86,7 @@ void AdaptiveFileAllocationIterator::allocateChunk()
allocator_->allocateChunk(); allocator_->allocateChunk();
} }
} }
bool AdaptiveFileAllocationIterator::finished() bool AdaptiveFileAllocationIterator::finished()
{ {
if(!allocator_) { if(!allocator_) {

View file

@ -58,7 +58,7 @@ public:
virtual ~AdaptiveFileAllocationIterator(); virtual ~AdaptiveFileAllocationIterator();
virtual void allocateChunk(); virtual void allocateChunk();
virtual bool finished(); virtual bool finished();
virtual int64_t getCurrentLength(); virtual int64_t getCurrentLength();

View file

@ -58,10 +58,10 @@
namespace aria2 { namespace aria2 {
/* In that URI Selector, select method returns one of the bests /* In that URI Selector, select method returns one of the bests
* mirrors for first and reserved connections. For supplementary * mirrors for first and reserved connections. For supplementary
* ones, it returns mirrors which has not been tested yet, and * ones, it returns mirrors which has not been tested yet, and
* if each of them already tested, returns mirrors which has to * if each of them already tested, returns mirrors which has to
* be tested again. Otherwise, it doesn't return anymore mirrors. * be tested again. Otherwise, it doesn't return anymore mirrors.
*/ */
@ -87,7 +87,7 @@ std::string AdaptiveURISelector::select
// failed uris that may succeed with more permissive values // failed uris that may succeed with more permissive values
mayRetryWithIncreasedTimeout(fileEntry); mayRetryWithIncreasedTimeout(fileEntry);
} }
std::string selected = selectOne(uris); std::string selected = selectOne(uris);
if(selected != A2STR::NIL) if(selected != A2STR::NIL)
@ -128,12 +128,12 @@ std::string AdaptiveURISelector::selectOne(const std::deque<std::string>& uris)
const size_t numPieces = const size_t numPieces =
requestGroup_->getDownloadContext()->getNumPieces(); requestGroup_->getDownloadContext()->getNumPieces();
bool reservedContext = numPieces > 0 && bool reservedContext = numPieces > 0 &&
static_cast<size_t>(nbConnections_) > std::min static_cast<size_t>(nbConnections_) > std::min
(numPieces, (numPieces,
static_cast<size_t>(requestGroup_->getNumConcurrentCommand())); static_cast<size_t>(requestGroup_->getNumConcurrentCommand()));
bool selectBest = numPieces == 0 || reservedContext; bool selectBest = numPieces == 0 || reservedContext;
if(numPieces > 0) if(numPieces > 0)
++nbConnections_; ++nbConnections_;
@ -148,7 +148,7 @@ std::string AdaptiveURISelector::selectOne(const std::deque<std::string>& uris)
return notTested; return notTested;
} }
} }
if(!selectBest && nbConnections_ > 1 && nbServerToEvaluate_ > 0) { if(!selectBest && nbConnections_ > 1 && nbServerToEvaluate_ > 0) {
nbServerToEvaluate_--; nbServerToEvaluate_--;
std::string notTested = getFirstNotTestedUri(uris); std::string notTested = getFirstNotTestedUri(uris);
@ -184,7 +184,7 @@ std::string AdaptiveURISelector::getBestMirror
int max = getMaxDownloadSpeed(uris); int max = getMaxDownloadSpeed(uris);
int min = max-(int)(max*0.25); int min = max-(int)(max*0.25);
std::deque<std::string> bests = getUrisBySpeed(uris, min); std::deque<std::string> bests = getUrisBySpeed(uris, min);
if (bests.size() < 2) { if (bests.size() < 2) {
std::string uri = getMaxDownloadSpeedUri(uris); std::string uri = getMaxDownloadSpeedUri(uris);
A2_LOG_DEBUG(fmt("AdaptiveURISelector: choosing the best mirror :" A2_LOG_DEBUG(fmt("AdaptiveURISelector: choosing the best mirror :"

View file

@ -70,7 +70,7 @@ private:
int getNbTestedServers(const std::deque<std::string>& uris) const; int getNbTestedServers(const std::deque<std::string>& uris) const;
std::string getBestMirror(const std::deque<std::string>& uris) const; std::string getBestMirror(const std::deque<std::string>& uris) const;
public: public:
AdaptiveURISelector(const SharedHandle<ServerStatMan>& serverStatMan, AdaptiveURISelector(const SharedHandle<ServerStatMan>& serverStatMan,
RequestGroup* requestGroup); RequestGroup* requestGroup);
virtual ~AdaptiveURISelector(); virtual ~AdaptiveURISelector();

View file

@ -266,7 +266,7 @@ bool getSparseMissingUnusedIndex
maxRange = currentRange; maxRange = currentRange;
} }
nextIndex = currentRange.endIndex; nextIndex = currentRange.endIndex;
} }
if(maxRange.getSize()) { if(maxRange.getSize()) {
if(maxRange.startIndex == 0) { if(maxRange.startIndex == 0) {
@ -897,7 +897,7 @@ BitfieldMan::Range::Range(size_t startIndex, size_t endIndex)
startIndex(startIndex), startIndex(startIndex),
endIndex(endIndex) endIndex(endIndex)
{} {}
size_t BitfieldMan::Range::getSize() const size_t BitfieldMan::Range::getSize() const
{ {
return endIndex-startIndex; return endIndex-startIndex;
@ -912,7 +912,7 @@ bool BitfieldMan::Range::operator<(const Range& range) const
{ {
return getSize() < range.getSize(); return getSize() < range.getSize();
} }
bool BitfieldMan::Range::operator==(const Range& range) const bool BitfieldMan::Range::operator==(const Range& range) const
{ {
return getSize() == range.getSize(); return getSize() == range.getSize();

View file

@ -80,7 +80,7 @@ public:
Range(size_t startIndex = 0, size_t endIndex = 0); Range(size_t startIndex = 0, size_t endIndex = 0);
size_t getSize() const; size_t getSize() const;
size_t getMidIndex() const; size_t getMidIndex() const;
bool operator<(const Range& range) const; bool operator<(const Range& range) const;
bool operator==(const Range& range) const; bool operator==(const Range& range) const;
}; };
public: public:
@ -248,7 +248,7 @@ public:
// Clears filter and disables filter // Clears filter and disables filter
void clearFilter(); void clearFilter();
void enableFilter(); void enableFilter();
void disableFilter(); void disableFilter();
bool isFilterEnabled() const bool isFilterEnabled() const

View file

@ -150,7 +150,7 @@ void BtLeecherStateChoke::plannedOptimisticUnchoke
{ {
std::for_each(peerEntries.begin(), peerEntries.end(), std::for_each(peerEntries.begin(), peerEntries.end(),
std::mem_fun_ref(&PeerEntry::disableOptUnchoking)); std::mem_fun_ref(&PeerEntry::disableOptUnchoking));
std::vector<PeerEntry>::iterator i = std::vector<PeerEntry>::iterator i =
std::partition(peerEntries.begin(), peerEntries.end(), std::partition(peerEntries.begin(), peerEntries.end(),
PeerFilter(true, true)); PeerFilter(true, true));
@ -168,7 +168,7 @@ void BtLeecherStateChoke::regularUnchoke(std::vector<PeerEntry>& peerEntries)
std::vector<PeerEntry>::iterator rest = std::vector<PeerEntry>::iterator rest =
std::partition(peerEntries.begin(), peerEntries.end(), std::partition(peerEntries.begin(), peerEntries.end(),
std::mem_fun_ref(&PeerEntry::isRegularUnchoker)); std::mem_fun_ref(&PeerEntry::isRegularUnchoker));
std::sort(peerEntries.begin(), rest); std::sort(peerEntries.begin(), rest);
// the number of regular unchokers // the number of regular unchokers
@ -218,7 +218,7 @@ BtLeecherStateChoke::executeChoke
peerEntries.erase(std::remove_if(peerEntries.begin(), peerEntries.end(), peerEntries.erase(std::remove_if(peerEntries.begin(), peerEntries.end(),
std::mem_fun_ref(&PeerEntry::isSnubbing)), std::mem_fun_ref(&PeerEntry::isSnubbing)),
peerEntries.end()); peerEntries.end());
std::for_each(peerEntries.begin(), peerEntries.end(), std::for_each(peerEntries.begin(), peerEntries.end(),
std::mem_fun_ref(&PeerEntry::enableChokingRequired)); std::mem_fun_ref(&PeerEntry::enableChokingRequired));

View file

@ -72,7 +72,7 @@ BtRegistry::getDownloadContext(const std::string& infoHash) const
infoHash) { infoHash) {
return (*i).second->downloadContext; return (*i).second->downloadContext;
} }
} }
return getNull<DownloadContext>(); return getNull<DownloadContext>();
} }

View file

@ -174,13 +174,13 @@ BtSeederStateChoke::executeChoke
std::transform(peerSet.begin(), peerSet.end(), std::transform(peerSet.begin(), peerSet.end(),
std::back_inserter(peerEntries), GenPeerEntry()); std::back_inserter(peerEntries), GenPeerEntry());
peerEntries.erase(std::remove_if(peerEntries.begin(), peerEntries.end(), peerEntries.erase(std::remove_if(peerEntries.begin(), peerEntries.end(),
NotInterestedPeer()), NotInterestedPeer()),
peerEntries.end()); peerEntries.end());
unchoke(peerEntries); unchoke(peerEntries);
if(++round_ == 3) { if(++round_ == 3) {
round_ = 0; round_ = 0;
} }

View file

@ -59,7 +59,7 @@ private:
Timer lastAmUnchoking_; Timer lastAmUnchoking_;
bool recentUnchoking_; bool recentUnchoking_;
int uploadSpeed_; int uploadSpeed_;
const static time_t TIME_FRAME = 20; const static time_t TIME_FRAME = 20;
public: public:
PeerEntry(const SharedHandle<Peer>& peer); PeerEntry(const SharedHandle<Peer>& peer);

View file

@ -114,7 +114,7 @@ void BtSetup::setup(std::vector<Command*>& commands,
c->setPieceStorage(pieceStorage); c->setPieceStorage(pieceStorage);
c->setBtRuntime(btRuntime); c->setBtRuntime(btRuntime);
c->setBtAnnounce(btAnnounce); c->setBtAnnounce(btAnnounce);
commands.push_back(c); commands.push_back(c);
} }
if(!metadataGetMode) { if(!metadataGetMode) {
@ -122,7 +122,7 @@ void BtSetup::setup(std::vector<Command*>& commands,
new PeerChokeCommand(e->newCUID(), e); new PeerChokeCommand(e->newCUID(), e);
c->setPeerStorage(peerStorage); c->setPeerStorage(peerStorage);
c->setBtRuntime(btRuntime); c->setBtRuntime(btRuntime);
commands.push_back(c); commands.push_back(c);
} }
{ {
@ -133,7 +133,7 @@ void BtSetup::setup(std::vector<Command*>& commands,
c->setPieceStorage(pieceStorage); c->setPieceStorage(pieceStorage);
c->setPeerStorage(peerStorage); c->setPeerStorage(peerStorage);
c->setBtAnnounce(btAnnounce); c->setBtAnnounce(btAnnounce);
commands.push_back(c); commands.push_back(c);
} }
@ -261,7 +261,7 @@ void BtSetup::setup(std::vector<Command*>& commands,
if(btReg->getLpdMessageReceiver()) { if(btReg->getLpdMessageReceiver()) {
const unsigned char* infoHash = const unsigned char* infoHash =
bittorrent::getInfoHash(requestGroup->getDownloadContext()); bittorrent::getInfoHash(requestGroup->getDownloadContext());
A2_LOG_INFO("Initializing LpdMessageDispatcher."); A2_LOG_INFO("Initializing LpdMessageDispatcher.");
SharedHandle<LpdMessageDispatcher> dispatcher SharedHandle<LpdMessageDispatcher> dispatcher
(new LpdMessageDispatcher (new LpdMessageDispatcher
(std::string(&infoHash[0], &infoHash[INFO_HASH_LENGTH]), (std::string(&infoHash[0], &infoHash[INFO_HASH_LENGTH]),

View file

@ -49,7 +49,7 @@ class BtRuntime;
class BtStopDownloadCommand:public TimeBasedCommand { class BtStopDownloadCommand:public TimeBasedCommand {
private: private:
RequestGroup* requestGroup_; RequestGroup* requestGroup_;
time_t timeout_; time_t timeout_;
Timer checkPoint_; Timer checkPoint_;

View file

@ -59,7 +59,7 @@ void Checksum::setDigest(const std::string& digest)
{ {
digest_ = digest; digest_ = digest;
} }
void Checksum::setHashType(const std::string& hashType) void Checksum::setHashType(const std::string& hashType)
{ {
hashType_ = hashType; hashType_ = hashType;

View file

@ -58,7 +58,7 @@ public:
{ {
return digest_; return digest_;
} }
void setHashType(const std::string& type); void setHashType(const std::string& type);
const std::string& getHashType() const const std::string& getHashType() const
{ {

View file

@ -65,7 +65,7 @@ public:
size_t countPieceHash() const; size_t countPieceHash() const;
const std::string& getPieceHash(size_t index) const; const std::string& getPieceHash(size_t index) const;
void setPieceHashes(const std::vector<std::string>& pieceHashes); void setPieceHashes(const std::vector<std::string>& pieceHashes);
const std::vector<std::string>& getPieceHashes() const const std::vector<std::string>& getPieceHashes() const
{ {

View file

@ -57,7 +57,7 @@ public:
(const SharedHandle<BinaryStream>& out, (const SharedHandle<BinaryStream>& out,
const SharedHandle<Segment>& segment, const SharedHandle<Segment>& segment,
const unsigned char* inbuf, size_t inlen); const unsigned char* inbuf, size_t inlen);
virtual bool finished(); virtual bool finished();
virtual void release(); virtual void release();

View file

@ -417,7 +417,7 @@ bool CookieStorage::saveNsFormat(const std::string& filename)
if(fp.close() == EOF) { if(fp.close() == EOF) {
A2_LOG_ERROR(fmt("Failed to save cookies to %s", filename.c_str())); A2_LOG_ERROR(fmt("Failed to save cookies to %s", filename.c_str()));
return false; return false;
} }
} }
if(File(tempfilename).renameTo(filename)) { if(File(tempfilename).renameTo(filename)) {
return true; return true;

View file

@ -157,7 +157,7 @@ public:
// method returns true. Otherwise, this method returns false. now // method returns true. Otherwise, this method returns false. now
// is used as creation time and last access time. // is used as creation time and last access time.
bool load(const std::string& filename, time_t now); bool load(const std::string& filename, time_t now);
// Saves Cookies in Netspace format which is used in // Saves Cookies in Netspace format which is used in
// Firefox1.2/Netscape/Mozilla. If Cookies are successfully saved, // Firefox1.2/Netscape/Mozilla. If Cookies are successfully saved,
// this method returns true, otherwise returns false. // this method returns true, otherwise returns false.
@ -165,7 +165,7 @@ public:
// Returns the number of cookies this object stores. // Returns the number of cookies this object stores.
size_t size() const; size_t size() const;
// Returns true if this object contains a cookie x where x == cookie // Returns true if this object contains a cookie x where x == cookie
// satisfies. // satisfies.
bool contains(const Cookie& cookie) const; bool contains(const Cookie& cookie) const;

View file

@ -83,7 +83,7 @@ public:
} }
void setMessageDispatcher(DHTMessageDispatcher* dispatcher); void setMessageDispatcher(DHTMessageDispatcher* dispatcher);
DHTMessageFactory* getMessageFactory() const DHTMessageFactory* getMessageFactory() const
{ {
return factory_; return factory_;

View file

@ -68,9 +68,9 @@ private:
unsigned char targetID_[DHT_ID_LENGTH]; unsigned char targetID_[DHT_ID_LENGTH];
std::deque<SharedHandle<DHTNodeLookupEntry> > entries_; std::deque<SharedHandle<DHTNodeLookupEntry> > entries_;
size_t inFlightMessage_; size_t inFlightMessage_;
template<typename Container> template<typename Container>
void toEntries void toEntries
(Container& entries, const std::vector<SharedHandle<DHTNode> >& nodes) const (Container& entries, const std::vector<SharedHandle<DHTNode> >& nodes) const
@ -130,12 +130,12 @@ protected:
virtual void getNodesFromMessage virtual void getNodesFromMessage
(std::vector<SharedHandle<DHTNode> >& nodes, (std::vector<SharedHandle<DHTNode> >& nodes,
const ResponseMessage* message) = 0; const ResponseMessage* message) = 0;
virtual void onReceivedInternal virtual void onReceivedInternal
(const ResponseMessage* message) {} (const ResponseMessage* message) {}
virtual bool needsAdditionalOutgoingMessage() { return true; } virtual bool needsAdditionalOutgoingMessage() { return true; }
virtual void onFinish() {} virtual void onFinish() {}
virtual SharedHandle<DHTMessage> createMessage virtual SharedHandle<DHTMessage> createMessage

View file

@ -51,7 +51,7 @@ class DHTTaskQueue;
class DHTAbstractTask:public DHTTask { class DHTAbstractTask:public DHTTask {
private: private:
bool finished_; bool finished_;
SharedHandle<DHTNode> localNode_; SharedHandle<DHTNode> localNode_;
DHTRoutingTable* routingTable_; DHTRoutingTable* routingTable_;
@ -59,7 +59,7 @@ private:
DHTMessageDispatcher* dispatcher_; DHTMessageDispatcher* dispatcher_;
DHTMessageFactory* factory_; DHTMessageFactory* factory_;
DHTTaskQueue* taskQueue_; DHTTaskQueue* taskQueue_;
protected: protected:
void setFinished(bool f) void setFinished(bool f)

View file

@ -70,7 +70,7 @@ public:
virtual void doReceivedAction(); virtual void doReceivedAction();
virtual SharedHandle<Dict> getArgument(); virtual SharedHandle<Dict> getArgument();
virtual const std::string& getMessageType() const; virtual const std::string& getMessageType() const;
virtual void validate() const; virtual void validate() const;

View file

@ -49,7 +49,7 @@ private:
int family_; int family_;
SharedHandle<DHTNode> localNode_; SharedHandle<DHTNode> localNode_;
SharedHandle<DHTRoutingTable> routingTable_; SharedHandle<DHTRoutingTable> routingTable_;
void save(); void save();

View file

@ -202,7 +202,7 @@ SharedHandle<DHTBucket> DHTBucket::split()
assert(rBucket->addNode(*i)); assert(rBucket->addNode(*i));
} else { } else {
lNodes.push_back(*i); lNodes.push_back(*i);
} }
} }
nodes_ = lNodes; nodes_ = lNodes;
// TODO create toString() and use it. // TODO create toString() and use it.
@ -220,7 +220,7 @@ SharedHandle<DHTBucket> DHTBucket::split()
void DHTBucket::getGoodNodes void DHTBucket::getGoodNodes
(std::vector<SharedHandle<DHTNode> >& goodNodes) const (std::vector<SharedHandle<DHTNode> >& goodNodes) const
{ {
goodNodes.insert(goodNodes.end(), nodes_.begin(), nodes_.end()); goodNodes.insert(goodNodes.end(), nodes_.begin(), nodes_.end());
goodNodes.erase(std::remove_if(goodNodes.begin(), goodNodes.end(), goodNodes.erase(std::remove_if(goodNodes.begin(), goodNodes.end(),
mem_fun_sh(&DHTNode::isBad)), goodNodes.end()); mem_fun_sh(&DHTNode::isBad)), goodNodes.end());
} }

View file

@ -97,7 +97,7 @@ public:
void cacheNode(const SharedHandle<DHTNode>& node); void cacheNode(const SharedHandle<DHTNode>& node);
bool splitAllowed() const; bool splitAllowed() const;
size_t getPrefixLength() const size_t getPrefixLength() const
{ {
return prefixLength_; return prefixLength_;

View file

@ -61,7 +61,7 @@ public:
* given, the socket is associated to the address. * given, the socket is associated to the address.
*/ */
bool bind(uint16_t& port, const std::string& addr, SegList<int>& sgl); bool bind(uint16_t& port, const std::string& addr, SegList<int>& sgl);
/** /**
* Binds port. The port number specified by port is used to bind. * Binds port. The port number specified by port is used to bind.
* If successful, the binded port is assigned to port and returns * If successful, the binded port is assigned to port and returns

View file

@ -128,7 +128,7 @@ bool DHTEntryPointNameResolveCommand::execute()
try { try {
std::vector<std::string> addrs; std::vector<std::string> addrs;
res.resolve(addrs, hostname); res.resolve(addrs, hostname);
std::pair<std::string, uint16_t> p(addrs.front(), std::pair<std::string, uint16_t> p(addrs.front(),
entryPoints_.front().second); entryPoints_.front().second);
resolvedEntryPoints_.push_back(p); resolvedEntryPoints_.push_back(p);
@ -156,7 +156,7 @@ void DHTEntryPointNameResolveCommand::addPingTask
SharedHandle<DHTNode> entryNode(new DHTNode()); SharedHandle<DHTNode> entryNode(new DHTNode());
entryNode->setIPAddress(addr.first); entryNode->setIPAddress(addr.first);
entryNode->setPort(addr.second); entryNode->setPort(addr.second);
taskQueue_->addPeriodicTask1(taskFactory_->createPingTask(entryNode, 10)); taskQueue_->addPeriodicTask1(taskFactory_->createPingTask(entryNode, 10));
} }

View file

@ -56,7 +56,7 @@ public:
virtual void doReceivedAction(); virtual void doReceivedAction();
virtual SharedHandle<Dict> getArgument(); virtual SharedHandle<Dict> getArgument();
virtual const std::string& getMessageType() const; virtual const std::string& getMessageType() const;
const unsigned char* getTargetNodeID() const const unsigned char* getTargetNodeID() const

View file

@ -58,7 +58,7 @@ public:
virtual void doReceivedAction(); virtual void doReceivedAction();
virtual SharedHandle<Dict> getResponse(); virtual SharedHandle<Dict> getResponse();
virtual const std::string& getMessageType() const; virtual const std::string& getMessageType() const;
virtual void accept(DHTMessageCallback* callback); virtual void accept(DHTMessageCallback* callback);
@ -72,9 +72,9 @@ public:
(const std::vector<SharedHandle<DHTNode> >& closestKNodes); (const std::vector<SharedHandle<DHTNode> >& closestKNodes);
static const std::string FIND_NODE; static const std::string FIND_NODE;
static const std::string NODES; static const std::string NODES;
static const std::string NODES6; static const std::string NODES6;
}; };

View file

@ -64,7 +64,7 @@ public:
virtual void doReceivedAction(); virtual void doReceivedAction();
virtual SharedHandle<Dict> getArgument(); virtual SharedHandle<Dict> getArgument();
virtual const std::string& getMessageType() const; virtual const std::string& getMessageType() const;
const unsigned char* getInfoHash() const const unsigned char* getInfoHash() const

View file

@ -93,7 +93,7 @@ public:
{ {
values_ = peers; values_ = peers;
} }
const std::string& getToken() const const std::string& getToken() const
{ {
return token_; return token_;

View file

@ -86,7 +86,7 @@ public:
virtual bool isReply() const = 0; virtual bool isReply() const = 0;
virtual void validate() const {} virtual void validate() const {}
virtual const std::string& getMessageType() const = 0; virtual const std::string& getMessageType() const = 0;
virtual std::string toString() const = 0; virtual std::string toString() const = 0;

View file

@ -157,7 +157,7 @@ public:
void setConnection(DHTConnection* connection); void setConnection(DHTConnection* connection);
void setMessageDispatcher(DHTMessageDispatcher* dispatcher); void setMessageDispatcher(DHTMessageDispatcher* dispatcher);
void setPeerAnnounceStorage(DHTPeerAnnounceStorage* storage); void setPeerAnnounceStorage(DHTPeerAnnounceStorage* storage);
void setTokenTracker(DHTTokenTracker* tokenTracker); void setTokenTracker(DHTTokenTracker* tokenTracker);

View file

@ -66,7 +66,7 @@ private:
void onMessageReceived(const SharedHandle<DHTMessage>& message); void onMessageReceived(const SharedHandle<DHTMessage>& message);
public: public:
DHTMessageReceiver(const SharedHandle<DHTMessageTracker>& tracker); DHTMessageReceiver(const SharedHandle<DHTMessageTracker>& tracker);
~DHTMessageReceiver(); ~DHTMessageReceiver();
SharedHandle<DHTMessage> receiveMessage(); SharedHandle<DHTMessage> receiveMessage();

View file

@ -56,7 +56,7 @@ class DHTMessageTrackerEntry;
class DHTMessageTracker { class DHTMessageTracker {
private: private:
std::deque<SharedHandle<DHTMessageTrackerEntry> > entries_; std::deque<SharedHandle<DHTMessageTrackerEntry> > entries_;
SharedHandle<DHTRoutingTable> routingTable_; SharedHandle<DHTRoutingTable> routingTable_;
SharedHandle<DHTMessageFactory> factory_; SharedHandle<DHTMessageFactory> factory_;

View file

@ -56,7 +56,7 @@ private:
std::string transactionID_; std::string transactionID_;
std::string messageType_; std::string messageType_;
SharedHandle<DHTMessageCallback> callback_; SharedHandle<DHTMessageCallback> callback_;
Timer dispatchedTime_; Timer dispatchedTime_;
@ -89,7 +89,7 @@ public:
const SharedHandle<DHTMessageCallback>& getCallback() const const SharedHandle<DHTMessageCallback>& getCallback() const
{ {
return callback_; return callback_;
} }
int64_t getElapsedMillis() const; int64_t getElapsedMillis() const;
}; };

View file

@ -61,14 +61,14 @@ private:
Timer lastContact_; Timer lastContact_;
public: public:
DHTNode(); DHTNode();
/** /**
* id must be 20 bytes length * id must be 20 bytes length
*/ */
DHTNode(const unsigned char* id); DHTNode(const unsigned char* id);
~DHTNode(); ~DHTNode();
void generateID(); void generateID();
const unsigned char* getID() const const unsigned char* getID() const

View file

@ -72,7 +72,7 @@ public:
} }
void removeStalePeerAddrEntry(time_t timeout); void removeStalePeerAddrEntry(time_t timeout);
bool empty() const; bool empty() const;
const Timer& getLastUpdated() const const Timer& getLastUpdated() const

View file

@ -92,7 +92,7 @@ DHTPeerAnnounceStorage::addPeerAnnounce(const unsigned char* infoHash,
bool DHTPeerAnnounceStorage::contains(const unsigned char* infoHash) const bool DHTPeerAnnounceStorage::contains(const unsigned char* infoHash) const
{ {
SharedHandle<DHTPeerAnnounceEntry> entry(new DHTPeerAnnounceEntry(infoHash)); SharedHandle<DHTPeerAnnounceEntry> entry(new DHTPeerAnnounceEntry(infoHash));
return return
std::binary_search(entries_.begin(), entries_.end(), entry, InfoHashLess()); std::binary_search(entries_.begin(), entries_.end(), entry, InfoHashLess());
} }

View file

@ -69,7 +69,7 @@ DHTPeerLookupTask::getNodesFromMessage
message->getClosestKNodes(); message->getClosestKNodes();
nodes.insert(nodes.end(), knodes.begin(), knodes.end()); nodes.insert(nodes.end(), knodes.begin(), knodes.end());
} }
void DHTPeerLookupTask::onReceivedInternal void DHTPeerLookupTask::onReceivedInternal
(const DHTGetPeersReplyMessage* message) (const DHTGetPeersReplyMessage* message)
{ {
@ -80,7 +80,7 @@ void DHTPeerLookupTask::onReceivedInternal
A2_LOG_INFO(fmt("Received %lu peers.", A2_LOG_INFO(fmt("Received %lu peers.",
static_cast<unsigned long>(message->getValues().size()))); static_cast<unsigned long>(message->getValues().size())));
} }
SharedHandle<DHTMessage> DHTPeerLookupTask::createMessage SharedHandle<DHTMessage> DHTPeerLookupTask::createMessage
(const SharedHandle<DHTNode>& remoteNode) (const SharedHandle<DHTNode>& remoteNode)
{ {

View file

@ -60,9 +60,9 @@ public:
virtual void getNodesFromMessage virtual void getNodesFromMessage
(std::vector<SharedHandle<DHTNode> >& nodes, (std::vector<SharedHandle<DHTNode> >& nodes,
const DHTGetPeersReplyMessage* message); const DHTGetPeersReplyMessage* message);
virtual void onReceivedInternal(const DHTGetPeersReplyMessage* message); virtual void onReceivedInternal(const DHTGetPeersReplyMessage* message);
virtual SharedHandle<DHTMessage> createMessage virtual SharedHandle<DHTMessage> createMessage
(const SharedHandle<DHTNode>& remoteNode); (const SharedHandle<DHTNode>& remoteNode);

View file

@ -64,7 +64,7 @@ public:
void onReceived(const DHTPingReplyMessage* message); void onReceived(const DHTPingReplyMessage* message);
void onTimeout(const SharedHandle<DHTNode>& node); void onTimeout(const SharedHandle<DHTNode>& node);
void setTimeout(time_t timeout) void setTimeout(time_t timeout)
{ {

View file

@ -56,7 +56,7 @@ public:
virtual void fillMessage(Dict* msgDict); virtual void fillMessage(Dict* msgDict);
virtual SharedHandle<Dict> getArgument() = 0; virtual SharedHandle<Dict> getArgument() = 0;
virtual bool isReply() const; virtual bool isReply() const;
virtual std::string toString() const; virtual std::string toString() const;

View file

@ -64,7 +64,7 @@ public:
void onReceived(const DHTPingReplyMessage* message); void onReceived(const DHTPingReplyMessage* message);
void onTimeout(const SharedHandle<DHTNode>& node); void onTimeout(const SharedHandle<DHTNode>& node);
void setTimeout(time_t timeout) void setTimeout(time_t timeout)
{ {

View file

@ -58,7 +58,7 @@ public:
virtual void fillMessage(Dict* msgDict); virtual void fillMessage(Dict* msgDict);
virtual SharedHandle<Dict> getResponse() = 0; virtual SharedHandle<Dict> getResponse() = 0;
virtual bool isReply() const; virtual bool isReply() const;
virtual std::string toString() const; virtual std::string toString() const;

View file

@ -84,13 +84,13 @@ public:
void moveBucketHead(const SharedHandle<DHTNode>& node); void moveBucketHead(const SharedHandle<DHTNode>& node);
void moveBucketTail(const SharedHandle<DHTNode>& node); void moveBucketTail(const SharedHandle<DHTNode>& node);
SharedHandle<DHTBucket> getBucketFor(const unsigned char* nodeID) const; SharedHandle<DHTBucket> getBucketFor(const unsigned char* nodeID) const;
SharedHandle<DHTBucket> getBucketFor(const SharedHandle<DHTNode>& node) const; SharedHandle<DHTBucket> getBucketFor(const SharedHandle<DHTNode>& node) const;
SharedHandle<DHTNode> getNode(const unsigned char* id, const std::string& ipaddr, uint16_t port) const; SharedHandle<DHTNode> getNode(const unsigned char* id, const std::string& ipaddr, uint16_t port) const;
void getBuckets(std::vector<SharedHandle<DHTBucket> >& buckets) const; void getBuckets(std::vector<SharedHandle<DHTBucket> >& buckets) const;
void setTaskQueue(const SharedHandle<DHTTaskQueue>& taskQueue); void setTaskQueue(const SharedHandle<DHTTaskQueue>& taskQueue);

View file

@ -125,7 +125,7 @@ void DHTRoutingTableDeserializer::deserialize(const std::string& filename)
filename.c_str(), filename.c_str(),
"bad header")); "bad header"));
} }
uint32_t temp32; uint32_t temp32;
uint64_t temp64; uint64_t temp64;
// time // time
@ -138,7 +138,7 @@ void DHTRoutingTableDeserializer::deserialize(const std::string& filename)
READ_CHECK(fp, &temp64, sizeof(temp64)); READ_CHECK(fp, &temp64, sizeof(temp64));
serializedTime_.setTimeInSec(ntoh64(temp64)); serializedTime_.setTimeInSec(ntoh64(temp64));
} }
// localnode // localnode
// 8bytes reserved // 8bytes reserved
readBytes(fp, buf, buf.size(), 8); readBytes(fp, buf, buf.size(), 8);

View file

@ -95,7 +95,7 @@ void DHTRoutingTableSerializer::serialize(const std::string& filename)
// version // version
header[6] = 0; header[6] = 0;
header[7] = 0x03u; header[7] = 0x03u;
char zero[18]; char zero[18];
memset(zero, 0, sizeof(zero)); memset(zero, 0, sizeof(zero));

View file

@ -63,7 +63,7 @@ public:
createPeerLookupTask(const SharedHandle<DownloadContext>& ctx, createPeerLookupTask(const SharedHandle<DownloadContext>& ctx,
uint16_t tcpPort, uint16_t tcpPort,
const SharedHandle<PeerStorage>& peerStorage) = 0; const SharedHandle<PeerStorage>& peerStorage) = 0;
virtual SharedHandle<DHTTask> virtual SharedHandle<DHTTask>
createPeerAnnounceTask(const unsigned char* infoHash) = 0; createPeerAnnounceTask(const unsigned char* infoHash) = 0;

View file

@ -56,7 +56,7 @@ private:
DHTMessageDispatcher* dispatcher_; DHTMessageDispatcher* dispatcher_;
DHTMessageFactory* factory_; DHTMessageFactory* factory_;
DHTTaskQueue* taskQueue_; DHTTaskQueue* taskQueue_;
time_t timeout_; time_t timeout_;

View file

@ -88,7 +88,7 @@ private:
if((*i).good_) { if((*i).good_) {
*out++ = (*i).addr_; *out++ = (*i).addr_;
} }
} }
} }
void markBad(const std::string& addr); void markBad(const std::string& addr);
@ -109,7 +109,7 @@ public:
DNSCache& operator=(const DNSCache& c); DNSCache& operator=(const DNSCache& c);
const std::string& find(const std::string& hostname, uint16_t port) const; const std::string& find(const std::string& hostname, uint16_t port) const;
template<typename OutputIterator> template<typename OutputIterator>
void findAll void findAll
(OutputIterator out, const std::string& hostname, uint16_t port) const (OutputIterator out, const std::string& hostname, uint16_t port) const

View file

@ -132,7 +132,7 @@ SharedHandle<BtMessage> DefaultBtInteractive::receiveHandshake(bool quickReply)
} }
peer_->setPeerId(message->getPeerId()); peer_->setPeerId(message->getPeerId());
if(message->isFastExtensionSupported()) { if(message->isFastExtensionSupported()) {
peer_->setFastExtensionEnabled(true); peer_->setFastExtensionEnabled(true);
A2_LOG_INFO(fmt(MSG_FAST_EXTENSION_ENABLED, cuid_)); A2_LOG_INFO(fmt(MSG_FAST_EXTENSION_ENABLED, cuid_));
@ -367,7 +367,7 @@ void DefaultBtInteractive::fillPiece(size_t maxMissingBlock) {
btRequestFactory_->getTargetPieceIndexes(excludedIndexes); btRequestFactory_->getTargetPieceIndexes(excludedIndexes);
pieceStorage_->getMissingPiece pieceStorage_->getMissingPiece
(pieces, diffMissingBlock, peer_, excludedIndexes, cuid_); (pieces, diffMissingBlock, peer_, excludedIndexes, cuid_);
} else { } else {
pieces.reserve(diffMissingBlock); pieces.reserve(diffMissingBlock);
pieceStorage_->getMissingPiece(pieces, diffMissingBlock, peer_, cuid_); pieceStorage_->getMissingPiece(pieces, diffMissingBlock, peer_, cuid_);
} }
@ -568,7 +568,7 @@ size_t DefaultBtInteractive::countPendingMessage()
{ {
return dispatcher_->countMessageInQueue(); return dispatcher_->countMessageInQueue();
} }
bool DefaultBtInteractive::isSendingMessageInProgress() bool DefaultBtInteractive::isSendingMessageInProgress()
{ {
return dispatcher_->isSendingInProgress(); return dispatcher_->isSendingInProgress();

View file

@ -68,7 +68,7 @@ private:
int keepAliveCount; int keepAliveCount;
public: public:
FloodingStat():chokeUnchokeCount(0), keepAliveCount(0) {} FloodingStat():chokeUnchokeCount(0), keepAliveCount(0) {}
void incChokeUnchokeCount() { void incChokeUnchokeCount() {
if(chokeUnchokeCount < INT_MAX) { if(chokeUnchokeCount < INT_MAX) {
chokeUnchokeCount++; chokeUnchokeCount++;
@ -184,7 +184,7 @@ public:
size_t receiveMessages(); size_t receiveMessages();
virtual size_t countPendingMessage(); virtual size_t countPendingMessage();
virtual bool isSendingMessageInProgress(); virtual bool isSendingMessageInProgress();
virtual size_t countReceivedMessageInIteration() const; virtual size_t countReceivedMessageInIteration() const;

View file

@ -201,7 +201,7 @@ public:
peer_(peer), peer_(peer),
pieceStorage_(pieceStorage) pieceStorage_(pieceStorage)
{} {}
void operator()(const RequestSlot& slot) const void operator()(const RequestSlot& slot) const
{ {
if(!peer_->isInPeerAllowedIndexSet(slot.getIndex())) { if(!peer_->isInPeerAllowedIndexSet(slot.getIndex())) {
@ -225,7 +225,7 @@ private:
public: public:
FindChokedRequestSlot(const SharedHandle<Peer>& peer): FindChokedRequestSlot(const SharedHandle<Peer>& peer):
peer_(peer) {} peer_(peer) {}
bool operator()(const RequestSlot& slot) const bool operator()(const RequestSlot& slot) const
{ {
return !peer_->isInPeerAllowedIndexSet(slot.getIndex()); return !peer_->isInPeerAllowedIndexSet(slot.getIndex());

View file

@ -206,7 +206,7 @@ void DefaultBtProgressInfoFile::save()
// It is assumed that integers are saved as: // It is assumed that integers are saved as:
// 1) host byte order if version == 0000 // 1) host byte order if version == 0000
// 2) network byte order if version == 0001 // 2) network byte order if version == 0001
void DefaultBtProgressInfoFile::load() void DefaultBtProgressInfoFile::load()
{ {
A2_LOG_INFO(fmt(MSG_LOADING_SEGMENT_FILE, filename_.c_str())); A2_LOG_INFO(fmt(MSG_LOADING_SEGMENT_FILE, filename_.c_str()));
BufferedFile fp(filename_.c_str(), BufferedFile::READ); BufferedFile fp(filename_.c_str(), BufferedFile::READ);
@ -356,7 +356,7 @@ void DefaultBtProgressInfoFile::load()
piece->setHashType(dctx_->getPieceHashType()); piece->setHashType(dctx_->getPieceHashType());
#endif // ENABLE_MESSAGE_DIGEST #endif // ENABLE_MESSAGE_DIGEST
inFlightPieces.push_back(piece); inFlightPieces.push_back(piece);
} }
pieceStorage_->addInFlightPiece(inFlightPieces); pieceStorage_->addInFlightPiece(inFlightPieces);

View file

@ -114,7 +114,7 @@ public:
virtual void executeChoke(); virtual void executeChoke();
void deleteUnusedPeer(size_t delSize); void deleteUnusedPeer(size_t delSize);
void onErasingPeer(const SharedHandle<Peer>& peer); void onErasingPeer(const SharedHandle<Peer>& peer);
void onReturningPeer(const SharedHandle<Peer>& peer); void onReturningPeer(const SharedHandle<Peer>& peer);

View file

@ -122,7 +122,7 @@ public:
// priority. // priority.
DefaultPieceStorage(const SharedHandle<DownloadContext>& downloadContext, DefaultPieceStorage(const SharedHandle<DownloadContext>& downloadContext,
const Option* option); const Option* option);
virtual ~DefaultPieceStorage(); virtual ~DefaultPieceStorage();
#ifdef ENABLE_BITTORRENT #ifdef ENABLE_BITTORRENT
@ -206,7 +206,7 @@ public:
virtual void initStorage(); virtual void initStorage();
virtual void setupFileFilter(); virtual void setupFileFilter();
virtual void clearFileFilter(); virtual void clearFileFilter();
virtual bool downloadFinished(); virtual bool downloadFinished();
@ -215,7 +215,7 @@ public:
virtual void setBitfield(const unsigned char* bitfield, virtual void setBitfield(const unsigned char* bitfield,
size_t bitfieldLength); size_t bitfieldLength);
virtual size_t getBitfieldLength(); virtual size_t getBitfieldLength();
virtual const unsigned char* getBitfield(); virtual const unsigned char* getBitfield();
@ -234,7 +234,7 @@ public:
{ {
return endGame_; return endGame_;
} }
virtual void enterEndGame() virtual void enterEndGame()
{ {
endGame_ = true; endGame_ = true;
@ -270,7 +270,7 @@ public:
virtual void addPieceStats(const unsigned char* bitfield, virtual void addPieceStats(const unsigned char* bitfield,
size_t bitfieldLength); size_t bitfieldLength);
virtual void subtractPieceStats(const unsigned char* bitfield, virtual void subtractPieceStats(const unsigned char* bitfield,
size_t bitfieldLength); size_t bitfieldLength);

View file

@ -76,7 +76,7 @@ private:
bool knowsTotalLength_; bool knowsTotalLength_;
RequestGroup* ownerRequestGroup_; RequestGroup* ownerRequestGroup_;
std::vector<SharedHandle<ContextAttribute> > attrs_; std::vector<SharedHandle<ContextAttribute> > attrs_;
Timer downloadStartTime_; Timer downloadStartTime_;
@ -99,7 +99,7 @@ public:
~DownloadContext(); ~DownloadContext();
const std::string& getPieceHash(size_t index) const; const std::string& getPieceHash(size_t index) const;
const std::vector<std::string>& getPieceHashes() const const std::vector<std::string>& getPieceHashes() const
{ {
return pieceHashes_; return pieceHashes_;
@ -219,7 +219,7 @@ public:
} }
int64_t calculateSessionTime() const; int64_t calculateSessionTime() const;
// Returns FileEntry at given offset. SharedHandle<FileEntry>() is // Returns FileEntry at given offset. SharedHandle<FileEntry>() is
// returned if no such FileEntry is found. // returned if no such FileEntry is found.
SharedHandle<FileEntry> findFileEntryByOffset(int64_t offset) const; SharedHandle<FileEntry> findFileEntryByOffset(int64_t offset) const;

View file

@ -115,7 +115,7 @@ private:
// key = IP address:port, value = SocketPoolEntry // key = IP address:port, value = SocketPoolEntry
std::multimap<std::string, SocketPoolEntry> socketPool_; std::multimap<std::string, SocketPoolEntry> socketPool_;
Timer lastSocketPoolScan_; Timer lastSocketPoolScan_;
bool noWait_; bool noWait_;
@ -151,7 +151,7 @@ private:
void onEndOfRun(); void onEndOfRun();
void afterEachIteration(); void afterEachIteration();
void poolSocket(const std::string& key, const SocketPoolEntry& entry); void poolSocket(const std::string& key, const SocketPoolEntry& entry);
std::multimap<std::string, SocketPoolEntry>::iterator std::multimap<std::string, SocketPoolEntry>::iterator
@ -162,7 +162,7 @@ private:
SharedHandle<FileAllocationMan> fileAllocationMan_; SharedHandle<FileAllocationMan> fileAllocationMan_;
SharedHandle<CheckIntegrityMan> checkIntegrityMan_; SharedHandle<CheckIntegrityMan> checkIntegrityMan_;
Option* option_; Option* option_;
public: public:
DownloadEngine(const SharedHandle<EventPoll>& eventPoll); DownloadEngine(const SharedHandle<EventPoll>& eventPoll);
~DownloadEngine(); ~DownloadEngine();

View file

@ -159,7 +159,7 @@ int translateEvents(EventPoll::EventType events)
newEvents |= EPOLLERR; newEvents |= EPOLLERR;
} }
if(EventPoll::EVENT_HUP&events) { if(EventPoll::EVENT_HUP&events) {
newEvents |= EPOLLHUP; newEvents |= EPOLLHUP;
} }
return newEvents; return newEvents;
} }

View file

@ -78,7 +78,7 @@ public:
{ {
return command_; return command_;
} }
void addEvents(int events) void addEvents(int events)
{ {
events_ |= events; events_ |= events;
@ -86,14 +86,14 @@ public:
void removeEvents(int events) void removeEvents(int events)
{ {
events_ &= (~events); events_ &= (~events);
} }
bool eventsEmpty() const bool eventsEmpty() const
{ {
return events_ == 0; return events_ == 0;
} }
bool operator==(const CommandEvent& commandEvent) const bool operator==(const CommandEvent& commandEvent) const
{ {
return command_ == commandEvent.command_; return command_ == commandEvent.command_;
@ -134,7 +134,7 @@ public:
socketEntry->removeCommandEvent(*this); socketEntry->removeCommandEvent(*this);
} }
}; };
#ifdef ENABLE_ASYNC_DNS #ifdef ENABLE_ASYNC_DNS
template<typename SocketEntry, typename EventPoll> template<typename SocketEntry, typename EventPoll>
@ -153,7 +153,7 @@ public:
{ {
return *resolver_ == *event.resolver_; return *resolver_ == *event.resolver_;
} }
virtual int getEvents() const virtual int getEvents() const
{ {
return events_; return events_;
@ -198,11 +198,11 @@ template<typename CommandEvent, typename ADNSEvent>
class SocketEntry { class SocketEntry {
protected: protected:
sock_t socket_; sock_t socket_;
std::deque<CommandEvent> commandEvents_; std::deque<CommandEvent> commandEvents_;
#ifdef ENABLE_ASYNC_DNS #ifdef ENABLE_ASYNC_DNS
std::deque<ADNSEvent> adnsEvents_; std::deque<ADNSEvent> adnsEvents_;
#endif // ENABLE_ASYNC_DNS #endif // ENABLE_ASYNC_DNS
@ -247,7 +247,7 @@ public:
} }
#ifdef ENABLE_ASYNC_DNS #ifdef ENABLE_ASYNC_DNS
void addADNSEvent(const ADNSEvent& aev) void addADNSEvent(const ADNSEvent& aev)
{ {
typename std::deque<ADNSEvent>::iterator i = typename std::deque<ADNSEvent>::iterator i =
@ -287,7 +287,7 @@ public:
return commandEvents_.empty(); return commandEvents_.empty();
#endif // !ENABLE_ASYNC_DNS) #endif // !ENABLE_ASYNC_DNS)
} }
void processEvents(int events) void processEvents(int events)
{ {
std::for_each(commandEvents_.begin(), commandEvents_.end(), std::for_each(commandEvents_.begin(), commandEvents_.end(),
@ -313,7 +313,7 @@ private:
Command* command_; Command* command_;
size_t socketsSize_; size_t socketsSize_;
sock_t sockets_[ARES_GETSOCK_MAXNUM]; sock_t sockets_[ARES_GETSOCK_MAXNUM];
public: public:
@ -358,7 +358,7 @@ public:
} }
socketsSize_ = i; socketsSize_ = i;
} }
void removeSocketEvents(EventPoll* e) void removeSocketEvents(EventPoll* e)
{ {
for(size_t i = 0; i < socketsSize_; ++i) { for(size_t i = 0; i < socketsSize_; ++i) {

View file

@ -47,7 +47,7 @@ namespace aria2 {
class Exception:public std::exception { class Exception:public std::exception {
private: private:
const char* file_; const char* file_;
int line_; int line_;
// This is low-level system error code, typically errno in Linux. // This is low-level system error code, typically errno in Linux.
int errNum_; int errNum_;

View file

@ -45,7 +45,7 @@ SharedHandle<Exception> FatalException::copy() const
FatalException::FatalException FatalException::FatalException
(const char* file, int line, const std::string& msg): (const char* file, int line, const std::string& msg):
Exception(file, line, msg) {} Exception(file, line, msg) {}
FatalException::FatalException FatalException::FatalException
(const char* file, int line, const std::string& msg, (const char* file, int line, const std::string& msg,
const Exception& cause): const Exception& cause):

View file

@ -77,7 +77,7 @@ std::string FeedbackURISelector::select
if(uri.empty()) { if(uri.empty()) {
A2_LOG_DEBUG("No URI returned from selectFaster()"); A2_LOG_DEBUG("No URI returned from selectFaster()");
uri = selectRarer(fileEntry->getRemainingUris(), usedHosts); uri = selectRarer(fileEntry->getRemainingUris(), usedHosts);
} }
if(!uri.empty()) { if(!uri.empty()) {
std::deque<std::string>& uris = fileEntry->getRemainingUris(); std::deque<std::string>& uris = fileEntry->getRemainingUris();
uris.erase(std::find(uris.begin(), uris.end(), uri)); uris.erase(std::find(uris.begin(), uris.end(), uri));

View file

@ -50,7 +50,7 @@ namespace aria2 {
class File { class File {
private: private:
std::string name_; std::string name_;
/** /**
* Returns the return value of stat(...) * Returns the return value of stat(...)
*/ */

View file

@ -73,7 +73,7 @@ bool FileAllocationCommand::executeInternal()
static_cast<long int>(timer_.difference(global::wallclock())), static_cast<long int>(timer_.difference(global::wallclock())),
getRequestGroup()->getTotalLength())); getRequestGroup()->getTotalLength()));
getDownloadEngine()->getFileAllocationMan()->dropPickedEntry(); getDownloadEngine()->getFileAllocationMan()->dropPickedEntry();
std::vector<Command*>* commands = new std::vector<Command*>(); std::vector<Command*>* commands = new std::vector<Command*>();
auto_delete_container<std::vector<Command*> > commandsDel(commands); auto_delete_container<std::vector<Command*> > commandsDel(commands);
fileAllocationEntry_->prepareForNextAction(*commands, getDownloadEngine()); fileAllocationEntry_->prepareForNextAction(*commands, getDownloadEngine());

View file

@ -333,7 +333,7 @@ FtpConnection::findEndOfResponse
bool FtpConnection::bulkReceiveResponse(std::pair<int, std::string>& response) bool FtpConnection::bulkReceiveResponse(std::pair<int, std::string>& response)
{ {
char buf[1024]; char buf[1024];
while(1) { while(1) {
size_t size = sizeof(buf); size_t size = sizeof(buf);
socket_->readData(buf, size); socket_->readData(buf, size);

View file

@ -95,7 +95,7 @@ Command* FtpInitiateConnectionCommand::createNextCommand
getCuid(), addr.c_str(), port)); getCuid(), addr.c_str(), port));
createSocket(); createSocket();
getSocket()->establishConnection(addr, port); getSocket()->establishConnection(addr, port);
getRequest()->setConnectedAddrInfo(hostname, addr, port); getRequest()->setConnectedAddrInfo(hostname, addr, port);
if(proxyMethod == V_GET) { if(proxyMethod == V_GET) {
// Use GET for FTP via HTTP proxy. // Use GET for FTP via HTTP proxy.
@ -104,7 +104,7 @@ Command* FtpInitiateConnectionCommand::createNextCommand
(new SocketRecvBuffer(getSocket())); (new SocketRecvBuffer(getSocket()));
SharedHandle<HttpConnection> hc SharedHandle<HttpConnection> hc
(new HttpConnection(getCuid(), getSocket(), socketRecvBuffer)); (new HttpConnection(getCuid(), getSocket(), socketRecvBuffer));
HttpRequestCommand* c = HttpRequestCommand* c =
new HttpRequestCommand(getCuid(), getRequest(), getFileEntry(), new HttpRequestCommand(getCuid(), getRequest(), getFileEntry(),
getRequestGroup(), hc, getDownloadEngine(), getRequestGroup(), hc, getDownloadEngine(),
@ -138,7 +138,7 @@ Command* FtpInitiateConnectionCommand::createNextCommand
(new SocketRecvBuffer(pooledSocket)); (new SocketRecvBuffer(pooledSocket));
SharedHandle<HttpConnection> hc SharedHandle<HttpConnection> hc
(new HttpConnection(getCuid(), pooledSocket, socketRecvBuffer)); (new HttpConnection(getCuid(), pooledSocket, socketRecvBuffer));
HttpRequestCommand* c = HttpRequestCommand* c =
new HttpRequestCommand(getCuid(), getRequest(), getFileEntry(), new HttpRequestCommand(getCuid(), getRequest(), getFileEntry(),
getRequestGroup(), hc, getDownloadEngine(), getRequestGroup(), hc, getDownloadEngine(),

View file

@ -273,7 +273,7 @@ bool FtpNegotiationCommand::recvPwd()
bool FtpNegotiationCommand::sendCwdPrep() bool FtpNegotiationCommand::sendCwdPrep()
{ {
// Calling setReadCheckSocket() is needed when the socket is reused, // Calling setReadCheckSocket() is needed when the socket is reused,
setReadCheckSocket(getSocket()); setReadCheckSocket(getSocket());
cwdDirs_.push_front(ftp_->getBaseWorkingDir()); cwdDirs_.push_front(ftp_->getBaseWorkingDir());
util::split(getRequest()->getDir().begin(), getRequest()->getDir().end(), util::split(getRequest()->getDir().begin(), getRequest()->getDir().end(),
@ -354,7 +354,7 @@ bool FtpNegotiationCommand::recvMdtm()
getCuid())); getCuid()));
} }
sequence_ = SEQ_SEND_SIZE; sequence_ = SEQ_SEND_SIZE;
return true; return true;
} }
bool FtpNegotiationCommand::sendSize() { bool FtpNegotiationCommand::sendSize() {
@ -702,7 +702,7 @@ bool FtpNegotiationCommand::resolveProxy()
A2_LOG_INFO(fmt(MSG_CONNECTING_TO_SERVER, A2_LOG_INFO(fmt(MSG_CONNECTING_TO_SERVER,
getCuid(), getCuid(),
proxyAddr_.c_str(), proxyReq->getPort())); proxyAddr_.c_str(), proxyReq->getPort()));
dataSocket_.reset(new SocketCore()); dataSocket_.reset(new SocketCore());
dataSocket_->establishConnection(proxyAddr_, proxyReq->getPort()); dataSocket_->establishConnection(proxyAddr_, proxyReq->getPort());
disableReadCheckSocket(); disableReadCheckSocket();
setWriteCheckSocket(dataSocket_); setWriteCheckSocket(dataSocket_);
@ -742,7 +742,7 @@ bool FtpNegotiationCommand::sendTunnelRequest()
return false; return false;
} }
} }
} }
SharedHandle<HttpRequest> httpRequest(new HttpRequest()); SharedHandle<HttpRequest> httpRequest(new HttpRequest());
httpRequest->setUserAgent(getOption()->get(PREF_USER_AGENT)); httpRequest->setUserAgent(getOption()->get(PREF_USER_AGENT));
SharedHandle<Request> req(new Request()); SharedHandle<Request> req(new Request());

View file

@ -72,7 +72,7 @@ public:
{ {
return bytesProcessed_; return bytesProcessed_;
} }
static const std::string NAME; static const std::string NAME;
}; };

View file

@ -62,7 +62,7 @@ public:
{ {
return 0; return 0;
} }
virtual int64_t getPositionToWrite() const virtual int64_t getPositionToWrite() const
{ {
return writtenLength_; return writtenLength_;

View file

@ -195,13 +195,13 @@ std::string HttpRequest::createRequest()
if(!request_->isKeepAliveEnabled() && !request_->isPipeliningEnabled()) { if(!request_->isKeepAliveEnabled() && !request_->isPipeliningEnabled()) {
builtinHds.push_back(std::make_pair("Connection:", "close")); builtinHds.push_back(std::make_pair("Connection:", "close"));
} }
if(segment_ && segment_->getLength() > 0 && if(segment_ && segment_->getLength() > 0 &&
(request_->isPipeliningEnabled() || getStartByte() > 0)) { (request_->isPipeliningEnabled() || getStartByte() > 0)) {
std::string rangeHeader(fmt("bytes=%" PRId64 "-", getStartByte())); std::string rangeHeader(fmt("bytes=%" PRId64 "-", getStartByte()));
if(request_->isPipeliningEnabled()) { if(request_->isPipeliningEnabled()) {
rangeHeader += util::itos(getEndByte()); rangeHeader += util::itos(getEndByte());
} else if(getProtocol() != "ftp" && endOffsetOverride_ > 0) { } else if(getProtocol() != "ftp" && endOffsetOverride_ > 0) {
// FTP via http proxy does not support endbytes // FTP via http proxy does not support endbytes
rangeHeader += util::itos(endOffsetOverride_-1); rangeHeader += util::itos(endOffsetOverride_-1);
} }
builtinHds.push_back(std::make_pair("Range:", rangeHeader)); builtinHds.push_back(std::make_pair("Range:", rangeHeader));
@ -386,7 +386,7 @@ const std::string& HttpRequest::getCurrentURI() const
{ {
return request_->getCurrentUri(); return request_->getCurrentUri();
} }
const std::string& HttpRequest::getDir() const const std::string& HttpRequest::getDir() const
{ {
return request_->getDir(); return request_->getDir();

View file

@ -56,7 +56,7 @@ class AuthConfig;
class HttpRequest { class HttpRequest {
private: private:
static const std::string USER_AGENT; static const std::string USER_AGENT;
SharedHandle<Request> request_; SharedHandle<Request> request_;
@ -117,7 +117,7 @@ public:
const std::string& getProtocol() const; const std::string& getProtocol() const;
const std::string& getCurrentURI() const; const std::string& getCurrentURI() const;
const std::string& getDir() const; const std::string& getDir() const;
const std::string& getFile() const; const std::string& getFile() const;
@ -165,7 +165,7 @@ public:
void disableContentEncoding(); void disableContentEncoding();
void setUserAgent(const std::string& userAgent); void setUserAgent(const std::string& userAgent);
// accepts multiline headers, delimited by LF // accepts multiline headers, delimited by LF
void addHeader(const std::string& headers); void addHeader(const std::string& headers);
@ -193,7 +193,7 @@ public:
* object. * object.
*/ */
void setProxyRequest(const SharedHandle<Request>& proxyRequest); void setProxyRequest(const SharedHandle<Request>& proxyRequest);
/* /*
* Returns true if non-Null proxy request is set by setProxyRequest(). * Returns true if non-Null proxy request is set by setProxyRequest().
* Otherwise, returns false. * Otherwise, returns false.

View file

@ -60,7 +60,7 @@ private:
SharedHandle<HttpHeader> httpHeader_; SharedHandle<HttpHeader> httpHeader_;
public: public:
HttpResponse(); HttpResponse();
~HttpResponse(); ~HttpResponse();
void validateResponse() const; void validateResponse() const;

View file

@ -558,7 +558,7 @@ HttpDownloadCommand* HttpResponseCommand::createHttpDownloadCommand
command->installStreamFilter(filter); command->installStreamFilter(filter);
if(getRequestGroup()->isFileAllocationEnabled() && if(getRequestGroup()->isFileAllocationEnabled() &&
!decideFileAllocation(filter)) { !decideFileAllocation(filter)) {
getRequestGroup()->setFileAllocationEnabled(false); getRequestGroup()->setFileAllocationEnabled(false);
} }
getRequestGroup()->getURISelector()->tuneDownloadCommand getRequestGroup()->getURISelector()->tuneDownloadCommand
(getFileEntry()->getRemainingUris(), command); (getFileEntry()->getRemainingUris(), command);

View file

@ -52,6 +52,6 @@ public:
virtual ~HttpServerResponseCommand(); virtual ~HttpServerResponseCommand();
}; };
} // namespace aria2 } // namespace aria2
#endif // D_HTTP_SERVER_RESPONSE_COMMAND_H #endif // D_HTTP_SERVER_RESPONSE_COMMAND_H

View file

@ -105,7 +105,7 @@ bool HttpSkipResponseCommand::executeInternal()
// If request method is HEAD or content-length header is present and // If request method is HEAD or content-length header is present and
// it's value is 0, then pool socket for reuse. // it's value is 0, then pool socket for reuse.
// If content-length header is not present, then EOF is expected in the end. // If content-length header is not present, then EOF is expected in the end.
// In this case, the content is thrown away and socket cannot be pooled. // In this case, the content is thrown away and socket cannot be pooled.
if(getRequest()->getMethod() == Request::METHOD_HEAD || if(getRequest()->getMethod() == Request::METHOD_HEAD ||
httpResponse_->getHttpHeader()->defined(HttpHeader::CONTENT_LENGTH)) { httpResponse_->getHttpHeader()->defined(HttpHeader::CONTENT_LENGTH)) {
poolConnection(); poolConnection();

View file

@ -84,7 +84,7 @@ InitiatorMSEHandshakeCommand::~InitiatorMSEHandshakeCommand()
{ {
requestGroup_->decreaseNumCommand(); requestGroup_->decreaseNumCommand();
btRuntime_->decreaseConnections(); btRuntime_->decreaseConnections();
delete mseHandshake_; delete mseHandshake_;
} }

View file

@ -63,7 +63,7 @@ public:
static bool supports(const std::string& hashType); static bool supports(const std::string& hashType);
static size_t getDigestLength(const std::string& hashType); static size_t getDigestLength(const std::string& hashType);
size_t getDigestLength() const; size_t getDigestLength() const;
void reset(); void reset();
void update(const void* data, size_t length); void update(const void* data, size_t length);

View file

@ -63,7 +63,7 @@ public:
static bool supports(const std::string& hashType); static bool supports(const std::string& hashType);
static size_t getDigestLength(const std::string& hashType); static size_t getDigestLength(const std::string& hashType);
size_t getDigestLength() const; size_t getDigestLength() const;
void reset(); void reset();
void update(const void* data, size_t length); void update(const void* data, size_t length);

View file

@ -190,7 +190,7 @@ void MSEHandshake::initCipher(const unsigned char* infoHash)
memcpy(s, initiator_?"keyA":"keyB", 4); memcpy(s, initiator_?"keyA":"keyB", 4);
memcpy(s+4, secret_, KEY_LENGTH); memcpy(s+4, secret_, KEY_LENGTH);
memcpy(s+4+KEY_LENGTH, infoHash, INFO_HASH_LENGTH); memcpy(s+4+KEY_LENGTH, infoHash, INFO_HASH_LENGTH);
unsigned char localCipherKey[20]; unsigned char localCipherKey[20];
sha1_->reset(); sha1_->reset();
message_digest::digest(localCipherKey, sizeof(localCipherKey), message_digest::digest(localCipherKey, sizeof(localCipherKey),
@ -252,7 +252,7 @@ void MSEHandshake::createReq23Hash(unsigned char* md, const unsigned char* infoH
unsigned char yh[20]; unsigned char yh[20];
sha1_->reset(); sha1_->reset();
message_digest::digest(yh, sizeof(yh), sha1_, y, sizeof(y)); message_digest::digest(yh, sizeof(yh), sha1_, y, sizeof(y));
for(size_t i = 0; i < 20; ++i) { for(size_t i = 0; i < 20; ++i) {
md[i] = xh[i]^yh[i]; md[i] = xh[i]^yh[i];
} }

View file

@ -126,7 +126,7 @@ public:
const Option* op); const Option* op);
~MSEHandshake(); ~MSEHandshake();
HANDSHAKE_TYPE identifyHandshakeType(); HANDSHAKE_TYPE identifyHandshakeType();
void initEncryptionFacility(bool initiator); void initEncryptionFacility(bool initiator);

View file

@ -68,7 +68,7 @@ public:
{ {
return id_; return id_;
} }
static int64_t genId(); static int64_t genId();
}; };

View file

@ -91,7 +91,7 @@ public:
void reorderResourcesByPriority(); void reorderResourcesByPriority();
void reorderMetaurlsByPriority(); void reorderMetaurlsByPriority();
bool containsLanguage(const std::string& lang) const; bool containsLanguage(const std::string& lang) const;
bool containsOS(const std::string& os) const; bool containsOS(const std::string& os) const;

View file

@ -368,7 +368,7 @@ void MetalinkParserController::addHashOfChunkChecksumV4(const std::string& md)
} else { } else {
cancelChunkChecksumTransactionV4(); cancelChunkChecksumTransactionV4();
} }
#endif // ENABLE_MESSAGE_DIGEST #endif // ENABLE_MESSAGE_DIGEST
} }
void MetalinkParserController::commitChunkChecksumTransactionV4() void MetalinkParserController::commitChunkChecksumTransactionV4()

View file

@ -56,7 +56,7 @@ public:
const char* prefix, const char* prefix,
const char* nsUri, const char* nsUri,
const std::vector<XmlAttr>& attrs) {} const std::vector<XmlAttr>& attrs) {}
virtual void endElement virtual void endElement
(MetalinkParserStateMachine* stm, (MetalinkParserStateMachine* stm,
const char* localname, const char* localname,

View file

@ -519,7 +519,7 @@ void MetalinkParserStateMachine::beginElement
{ {
stateStack_.top()->beginElement(this, localname, prefix, nsUri, attrs); stateStack_.top()->beginElement(this, localname, prefix, nsUri, attrs);
} }
void MetalinkParserStateMachine::endElement void MetalinkParserStateMachine::endElement
(const char* localname, (const char* localname,
const char* prefix, const char* prefix,

View file

@ -60,7 +60,7 @@ private:
static MetalinkParserState* initialState_; static MetalinkParserState* initialState_;
static MetalinkParserState* skipTagState_; static MetalinkParserState* skipTagState_;
// Metalink3 // Metalink3
static MetalinkParserState* metalinkState_; static MetalinkParserState* metalinkState_;
static MetalinkParserState* filesState_; // Metalink3Spec static MetalinkParserState* filesState_; // Metalink3Spec
@ -126,7 +126,7 @@ public:
void setVersionState(); void setVersionState();
void setLanguageState(); void setLanguageState();
void setOSState(); void setOSState();
void setVerificationState(); // Metalink3Spec void setVerificationState(); // Metalink3Spec

View file

@ -133,7 +133,7 @@ SharedHandle<DiskWriterEntry> createDiskWriterEntry
SharedHandle<DiskWriterEntry> entry(new DiskWriterEntry(fileEntry)); SharedHandle<DiskWriterEntry> entry(new DiskWriterEntry(fileEntry));
entry->needsFileAllocation(needsFileAllocation); entry->needsFileAllocation(needsFileAllocation);
return entry; return entry;
} }
} // namespace } // namespace
void MultiDiskAdaptor::resetDiskWriterEntries() void MultiDiskAdaptor::resetDiskWriterEntries()
@ -243,11 +243,11 @@ void MultiDiskAdaptor::openIfNot
if(!entry->isOpen()) { if(!entry->isOpen()) {
// A2_LOG_DEBUG(fmt("DiskWriterEntry: Cache MISS. offset=%s", // A2_LOG_DEBUG(fmt("DiskWriterEntry: Cache MISS. offset=%s",
// util::itos(entry->getFileEntry()->getOffset()).c_str())); // util::itos(entry->getFileEntry()->getOffset()).c_str()));
int numOpened = openedDiskWriterEntries_.size(); int numOpened = openedDiskWriterEntries_.size();
(entry.get()->*open)(); (entry.get()->*open)();
if(numOpened >= maxOpenFiles_) { if(numOpened >= maxOpenFiles_) {
// Cache is full. // Cache is full.
// Choose one DiskWriterEntry randomly and close it. // Choose one DiskWriterEntry randomly and close it.
size_t index = size_t index =
SimpleRandomizer::getInstance()->getRandomNumber(numOpened); SimpleRandomizer::getInstance()->getRandomNumber(numOpened);
@ -258,7 +258,7 @@ void MultiDiskAdaptor::openIfNot
(*i) = entry; (*i) = entry;
} else { } else {
openedDiskWriterEntries_.push_back(entry); openedDiskWriterEntries_.push_back(entry);
} }
} else { } else {
// A2_LOG_DEBUG(fmt("DiskWriterEntry: Cache HIT. offset=%s", // A2_LOG_DEBUG(fmt("DiskWriterEntry: Cache HIT. offset=%s",
// util::itos(entry->getFileEntry()->getOffset()).c_str())); // util::itos(entry->getFileEntry()->getOffset()).c_str()));
@ -360,7 +360,7 @@ void throwOnDiskWriterNotOpened(const SharedHandle<DiskWriterEntry>& e,
throw DL_ABORT_EX throw DL_ABORT_EX
(fmt("DiskWriter for offset=%" PRId64 ", filename=%s is not opened.", (fmt("DiskWriter for offset=%" PRId64 ", filename=%s is not opened.",
static_cast<int64_t>(offset), static_cast<int64_t>(offset),
e->getFilePath().c_str())); e->getFilePath().c_str()));
} }
} // namespace } // namespace

View file

@ -56,7 +56,7 @@ public:
virtual ~MultiFileAllocationIterator(); virtual ~MultiFileAllocationIterator();
virtual void allocateChunk(); virtual void allocateChunk();
virtual bool finished(); virtual bool finished();
virtual int64_t getCurrentLength(); virtual int64_t getCurrentLength();

View file

@ -205,7 +205,7 @@ void Netrc::parse(const std::string& path)
skipMacdef(fp); skipMacdef(fp);
} }
state = GET_TOKEN; state = GET_TOKEN;
} }
} }
} }
if(state != GET_TOKEN) { if(state != GET_TOKEN) {

View file

@ -66,7 +66,7 @@ public:
int64_t getAsLLInt(const Pref* pref) const; int64_t getAsLLInt(const Pref* pref) const;
bool getAsBool(const Pref* pref) const; bool getAsBool(const Pref* pref) const;
double getAsDouble(const Pref* pref) const; double getAsDouble(const Pref* pref) const;
void remove(const Pref* pref); void remove(const Pref* pref);
void clear(); void clear();

View file

@ -152,7 +152,7 @@ void Peer::peerInterested(bool b)
assert(res_); assert(res_);
res_->peerInterested(b); res_->peerInterested(b);
} }
// this peer should be choked // this peer should be choked
bool Peer::chokingRequired() const bool Peer::chokingRequired() const
{ {

View file

@ -98,7 +98,7 @@ public:
{ {
return id_ == p.id_; return id_ == p.id_;
} }
bool operator!=(const Peer& p) bool operator!=(const Peer& p)
{ {
return !(*this == p); return !(*this == p);
@ -201,7 +201,7 @@ public:
bool peerInterested() const; bool peerInterested() const;
void peerInterested(bool b); void peerInterested(bool b);
// this peer should be choked // this peer should be choked
bool chokingRequired() const; bool chokingRequired() const;
@ -240,7 +240,7 @@ public:
* Returns the number of bytes downloaded from the remote host. * Returns the number of bytes downloaded from the remote host.
*/ */
int64_t getSessionDownloadLength() const; int64_t getSessionDownloadLength() const;
void setBitfield(const unsigned char* bitfield, size_t bitfieldLength); void setBitfield(const unsigned char* bitfield, size_t bitfieldLength);
const unsigned char* getBitfield() const; const unsigned char* getBitfield() const;
@ -254,7 +254,7 @@ public:
* operation = 0: set index-th bit to 0 * operation = 0: set index-th bit to 0
*/ */
void updateBitfield(size_t index, int operation); void updateBitfield(size_t index, int operation);
void setFastExtensionEnabled(bool enabled); void setFastExtensionEnabled(bool enabled);
bool isFastExtensionEnabled() const; bool isFastExtensionEnabled() const;

View file

@ -133,7 +133,7 @@ void PeerAbstractCommand::disableReadCheckSocket()
e_->deleteSocketForReadCheck(readCheckTarget_, this); e_->deleteSocketForReadCheck(readCheckTarget_, this);
checkSocketIsReadable_ = false; checkSocketIsReadable_ = false;
readCheckTarget_.reset(); readCheckTarget_.reset();
} }
} }
void PeerAbstractCommand::setReadCheckSocket(const SharedHandle<SocketCore>& socket) void PeerAbstractCommand::setReadCheckSocket(const SharedHandle<SocketCore>& socket)

Some files were not shown because too many files have changed in this diff Show more