Minor packet ordering fix
parent
0149265ee8
commit
4a29a7f92c
|
@ -578,7 +578,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
SyncBeginPrioritySend(buffer, 2); // highest priority
|
SyncBeginPrioritySend(buffer, 2); // highest priority
|
||||||
}
|
}
|
||||||
else if (outgoingPacket.Type == PacketType.ObjectUpdate
|
else if (outgoingPacket.Type == PacketType.ObjectUpdate
|
||||||
|| outgoingPacket.Type == PacketType.ChatFromSimulator
|
|
||||||
|| outgoingPacket.Type == PacketType.LayerData)
|
|| outgoingPacket.Type == PacketType.LayerData)
|
||||||
{
|
{
|
||||||
SyncBeginPrioritySend(buffer, 1); // medium priority
|
SyncBeginPrioritySend(buffer, 1); // medium priority
|
||||||
|
|
|
@ -58,6 +58,11 @@ namespace OpenMetaverse
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private List<UDPPacketBuffer> m_standardQueue = new List<UDPPacketBuffer>();
|
private List<UDPPacketBuffer> m_standardQueue = new List<UDPPacketBuffer>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Medium priority queue for our outgoing SyncBeginPrioritySend
|
||||||
|
/// </summary>
|
||||||
|
private List<UDPPacketBuffer> m_mediumPriorityQueue = new List<UDPPacketBuffer>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Prioritised queue for our outgoing SyncBeginPrioritySend
|
/// Prioritised queue for our outgoing SyncBeginPrioritySend
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -284,14 +289,17 @@ namespace OpenMetaverse
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
|
||||||
lock (m_standardQueue)
|
|
||||||
{
|
{
|
||||||
if (Priority != 0)
|
if (Priority != 0)
|
||||||
{
|
{
|
||||||
m_standardQueue.Insert(0, buf);
|
lock (m_mediumPriorityQueue)
|
||||||
|
{
|
||||||
|
m_mediumPriorityQueue.Add(buf);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
lock (m_standardQueue)
|
||||||
{
|
{
|
||||||
m_standardQueue.Add(buf);
|
m_standardQueue.Add(buf);
|
||||||
}
|
}
|
||||||
|
@ -338,6 +346,16 @@ namespace OpenMetaverse
|
||||||
AsyncBeginSend(buf);
|
AsyncBeginSend(buf);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
lock (m_mediumPriorityQueue)
|
||||||
|
{
|
||||||
|
if (m_mediumPriorityQueue.Count > 0)
|
||||||
|
{
|
||||||
|
UDPPacketBuffer buf = m_mediumPriorityQueue[0];
|
||||||
|
m_mediumPriorityQueue.RemoveAt(0);
|
||||||
|
AsyncBeginSend(buf);
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
lock (m_standardQueue)
|
lock (m_standardQueue)
|
||||||
{
|
{
|
||||||
|
@ -356,6 +374,8 @@ namespace OpenMetaverse
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
catch (SocketException) { }
|
catch (SocketException) { }
|
||||||
catch (ObjectDisposedException) { }
|
catch (ObjectDisposedException) { }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue