Revert "Hunting down mantis #5365"

This reverts commit ebeef02fef.
0.7.1-dev
Diva Canto 2011-02-10 06:09:04 -08:00
parent 21715396fa
commit 89bb5c0941
1 changed files with 15 additions and 30 deletions

View File

@ -141,27 +141,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
private void ProcessQueues()
{
// Process all the pending adds
OutgoingPacket pendingAdd;
if (m_pendingAdds != null)
{
while (m_pendingAdds.TryDequeue(out pendingAdd))
{
if (pendingAdd != null && m_packets != null)
{
m_packets[pendingAdd.SequenceNumber] = pendingAdd;
}
}
}
// Process all the pending removes, including updating statistics and round-trip times
PendingAck pendingRemove;
OutgoingPacket ackedPacket;
if (m_pendingRemoves != null)
{
while (m_pendingRemoves.TryDequeue(out pendingRemove))
{
if (m_pendingRemoves != null && m_packets != null)
{
if (m_packets.TryGetValue(pendingRemove.SequenceNumber, out ackedPacket))
{
@ -182,5 +169,3 @@ namespace OpenSim.Region.ClientStack.LindenUDP
}
}
}
}
}