Craters, take 2. Remove old discard logic and absolute discard timer.

Introduce a resend counter on the ack queue. The header "Resent" field is
now obsolete. Implement 3 resends on reliable packets, variable.
Increase default resend timeout to 3000ms and default silence threshold
to 350ms.
0.6.0-stable
Melanie Thielker 2008-10-05 14:44:26 +00:00
parent aab6cdd8b0
commit c84987426b
1 changed files with 28 additions and 48 deletions

View File

@ -55,9 +55,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
int PacketsReceived { get; } int PacketsReceived { get; }
int PacketsReceivedReported { get; } int PacketsReceivedReported { get; }
uint SilenceLimit { get; set; } uint SilenceLimit { get; set; }
uint DiscardTimeout { get; set; }
uint ResendTimeout { get; set; } uint ResendTimeout { get; set; }
bool ReliableIsImportant { get; set; } bool ReliableIsImportant { get; set; }
int MaxReliableResends { get; set; }
void InPacket(Packet packet); void InPacket(Packet packet);
void ProcessInPacket(LLQueItem item); void ProcessInPacket(LLQueItem item);
@ -104,16 +104,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP
// //
private class AckData private class AckData
{ {
public AckData(Packet packet, Object identifier, int tickCount) public AckData(Packet packet, Object identifier, int tickCount, int resends)
{ {
Packet = packet; Packet = packet;
Identifier = identifier; Identifier = identifier;
TickCount = tickCount; TickCount = tickCount;
Resends = resends;
} }
public Packet Packet; public Packet Packet;
public Object Identifier; public Object Identifier;
public int TickCount; public int TickCount;
public int Resends;
} }
private Dictionary<uint, AckData> m_NeedAck = private Dictionary<uint, AckData> m_NeedAck =
@ -122,7 +124,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
/// <summary> /// <summary>
/// The number of milliseconds that can pass before a packet that needs an ack is resent. /// The number of milliseconds that can pass before a packet that needs an ack is resent.
/// </param> /// </param>
private uint m_ResendTimeout = 2000; private uint m_ResendTimeout = 4000;
public uint ResendTimeout public uint ResendTimeout
{ {
@ -130,18 +132,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
set { m_ResendTimeout = value; } set { m_ResendTimeout = value; }
} }
/// <summary> private uint m_SilenceLimit = 350;
/// The number of milliseconds that can pass before a packet that needs an ack is discarded instead.
/// </summary>
private uint m_DiscardTimeout = 16000;
public uint DiscardTimeout
{
get { return m_DiscardTimeout; }
set { m_DiscardTimeout = value; }
}
private uint m_SilenceLimit = 250;
public uint SilenceLimit public uint SilenceLimit
{ {
@ -149,6 +140,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
set { m_SilenceLimit = value; } set { m_SilenceLimit = value; }
} }
private int m_MaxReliableResends = 3;
public int MaxReliableResends
{
get { return m_MaxReliableResends; }
set { m_MaxReliableResends = value; }
}
private int m_LastAck = 0; private int m_LastAck = 0;
// Track duplicated packets. This uses a Dictionary. Both insertion // Track duplicated packets. This uses a Dictionary. Both insertion
@ -204,7 +203,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
// Packet dropping // Packet dropping
// //
List<PacketType> m_ImportantPackets = new List<PacketType>(); List<PacketType> m_ImportantPackets = new List<PacketType>();
private bool m_ReliableIsImportant = true; private bool m_ReliableIsImportant = false;
public bool ReliableIsImportant public bool ReliableIsImportant
{ {
@ -362,41 +361,21 @@ namespace OpenSim.Region.ClientStack.LindenUDP
// //
if ((now - data.TickCount) > m_ResendTimeout) if ((now - data.TickCount) > m_ResendTimeout)
{ {
// Resend the packet. Set the packet's tick count to m_NeedAck[packet.Header.Sequence].Resends++;
// now, and keep it marked as resent.
//m_log.DebugFormat(
// "[CLIENT]: In {0} resending unacked packet {1} after {2}ms",
// m_Client.Scene.RegionInfo.ExternalEndPoint.Port, packet.Header.Sequence, now - data.TickCount);
//m_log.DebugFormat("[CLIENT]: Resent {0} packets in total", ++m_resentCount);
packet.Header.Resent = true; if (m_NeedAck[packet.Header.Sequence].Resends >=
QueuePacket(packet, ThrottleOutPacketType.Resend, m_MaxReliableResends && (!m_ReliableIsImportant))
data.Identifier);
}
// The discard logic
// If the packet is in the queue for <DiscardTimeout> s
// without having been processed, then we have clogged
// pipes. Most likely, the client is gone
// Drop the packets
//
if ((now - data.TickCount) > m_DiscardTimeout)
{
if (!m_ReliableIsImportant || !packet.Header.Reliable)
{ {
if (!m_ImportantPackets.Contains(packet.Type)) m_NeedAck.Remove(packet.Header.Sequence);
{
m_NeedAck.Remove(packet.Header.Sequence);
//m_log.DebugFormat(
// "[CLIENT]: In {0} discarding ack requirement for packet {1}",
// m_Client.Scene.RegionInfo.ExternalEndPoint.Port, packet.Header.Sequence);
}
TriggerOnPacketDrop(packet, data.Identifier); TriggerOnPacketDrop(packet, data.Identifier);
continue; continue;
} }
m_NeedAck[packet.Header.Sequence].TickCount =
System.Environment.TickCount;
QueuePacket(packet, ThrottleOutPacketType.Resend,
data.Identifier);
} }
} }
} }
@ -712,7 +691,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{ {
} }
m_NeedAck.Add(key, new AckData(packet, null, System.Environment.TickCount)); m_NeedAck.Add(key, new AckData(packet, null, System.Environment.TickCount, 0));
} }
m_Sequence = info.sequence; m_Sequence = info.sequence;
@ -776,7 +755,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
// Keep track of when this packet was sent out // Keep track of when this packet was sent out
m_NeedAck[packet.Header.Sequence] = new AckData(packet, m_NeedAck[packet.Header.Sequence] = new AckData(packet,
item.Identifier, System.Environment.TickCount); item.Identifier, System.Environment.TickCount,
0);
} }
} }
} }