pull/1/head
Tatsuhiro Tsujikawa 2006-03-31 16:17:52 +00:00
parent fc2307d47c
commit 9c67466cde
2 changed files with 3 additions and 1 deletions

View File

@ -170,7 +170,7 @@ void PeerInteractionCommand::checkLongTimePeerChoking() {
}
} else {
if(peer->amInterested && peer->peerChoking) {
if(Util::difftv(now, chokeCheckPoint) >= 3*60*1000000) {
if(Util::difftv(now, chokeCheckPoint) >= MAX_PEER_CHOKING_INTERVAL*1000000) {
throw new DlAbortEx("too long choking");
}
} else {

View File

@ -28,6 +28,8 @@
using namespace std;
#define MAX_PEER_CHOKING_INTERVAL (3*60)
class PeerInteractionCommand : public PeerAbstractCommand {
private:
int sequence;