(libT) fix r7055 bug reported by BentMyWookie. Also, narrow the bandwidth allocator's `clamp' range to lessen oscillation

This commit is contained in:
Charles Kerr 2008-11-06 04:16:53 +00:00
parent bd3f3568e2
commit c8a07d7ca6
1 changed files with 6 additions and 4 deletions

View File

@ -1013,6 +1013,7 @@ peerCallbackFunc( void * vpeer,
tr_torrent * tor = t->tor;
tor->activityDate = now;
tor->uploadedCur += e->length;
if( peer )
tr_rcTransferred ( peer->pieceSpeed[TR_CLIENT_TO_PEER], e->length );
tr_rcTransferred ( tor->pieceSpeed[TR_CLIENT_TO_PEER], e->length );
tr_rcTransferred ( tor->session->pieceSpeed[TR_CLIENT_TO_PEER], e->length );
@ -1031,6 +1032,7 @@ peerCallbackFunc( void * vpeer,
tr_torrent * tor = t->tor;
tor->activityDate = now;
tr_statsAddDownloaded( tor->session, e->length );
if( peer )
tr_rcTransferred ( peer->pieceSpeed[TR_PEER_TO_CLIENT], e->length );
tr_rcTransferred ( tor->pieceSpeed[TR_PEER_TO_CLIENT], e->length );
tr_rcTransferred ( tor->session->pieceSpeed[TR_PEER_TO_CLIENT], e->length );
@ -2327,8 +2329,8 @@ allocateHowMuch( double desiredAvgKB,
{
const double baseline = desiredAvgKB * 1024.0 /
BANDWIDTH_PULSES_PER_SECOND;
const double min = baseline * 0.90;
const double max = baseline * 1.10;
const double min = baseline * 0.85;
const double max = baseline * 1.15;
int i;
double usedBytes;
double n;