Handle resends better
parent
0b2a34438c
commit
780f34275b
|
@ -311,7 +311,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
|
|
||||||
// Packets this old get resent
|
// Packets this old get resent
|
||||||
//
|
//
|
||||||
if ((now - data.TickCount) > m_ResendTimeout && data.Sequence != 0)
|
if ((now - data.TickCount) > m_ResendTimeout && data.Sequence != 0 && !m_PacketQueue.Contains(data.Sequence))
|
||||||
{
|
{
|
||||||
if (resent < 20)
|
if (resent < 20)
|
||||||
{
|
{
|
||||||
|
|
|
@ -251,6 +251,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool Contains(uint sequence)
|
||||||
|
{
|
||||||
|
return contents.Contains(sequence);
|
||||||
|
}
|
||||||
|
|
||||||
public void Flush()
|
public void Flush()
|
||||||
{
|
{
|
||||||
lock (this)
|
lock (this)
|
||||||
|
|
Loading…
Reference in New Issue