Increase Peer max_packets_per_second (hopefully doesn't break anything)

This commit is contained in:
Perttu Ahola 2012-03-11 00:15:45 +02:00
parent e1f5227304
commit 98404ad8ea
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ void Peer::reportRTT(float rtt)
{
if(rtt >= 0.0){
if(rtt < 0.01){
if(m_max_packets_per_second < 100)
if(m_max_packets_per_second < 400)
m_max_packets_per_second += 10;
} else if(rtt < 0.2){
if(m_max_packets_per_second < 100)