* Experimental: Speeds maximum resend per second from 80 packets to 400. (From maximum 117kbit to 585kbit)

0.6.5-rc1
Adam Frisby 2009-05-02 22:01:47 +00:00
parent 229a4d54ca
commit 1027668359
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
//
if ((now - data.TickCount) > m_ResendTimeout && data.Sequence != 0 && !m_PacketQueue.Contains(data.Sequence))
{
if (resent < 20)
if (resent < 100) // Was 20 (= Max 117kbit/sec resends)
{
m_NeedAck[packet.Header.Sequence].Resends++;