From 8fa08634675123ccb48eebc932e654700f6b3f04 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 4 Nov 2008 01:24:03 +0000 Subject: [PATCH] (libT) change the bandwidth pulse from 8x per second to 4x per second... 8x is overkill --- libtransmission/session.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/session.h b/libtransmission/session.h index 18cd0d8f7..6c3261370 100644 --- a/libtransmission/session.h +++ b/libtransmission/session.h @@ -38,7 +38,7 @@ enum { /* How frequently to reallocate peer bandwidth. */ - BANDWIDTH_PULSES_PER_SECOND = 8, + BANDWIDTH_PULSES_PER_SECOND = 4, /* HOw many pulses to remember for averaging the current speed */ BANDWIDTH_PULSE_HISTORY = ( BANDWIDTH_PULSES_PER_SECOND * 2 )