aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 03cd2b4..5d3b5b5 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -3801,7 +3801,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
3801 m_udpClient.NeedAcks.Remove(oPacket.SequenceNumber); 3801 m_udpClient.NeedAcks.Remove(oPacket.SequenceNumber);
3802 3802
3803 // Count this as a resent packet since we are going to requeue all of the updates contained in it 3803 // Count this as a resent packet since we are going to requeue all of the updates contained in it
3804 Interlocked.Increment(ref m_udpClient.PacketsResent); 3804 Interlocked.Increment(ref m_udpClient.PacketsResent);
3805
3806 // We're not going to worry about interlock yet since its not currently critical that this total count
3807 // is 100% correct
3808 m_udpServer.PacketsResentCount++;
3805 3809
3806 foreach (EntityUpdate update in updates) 3810 foreach (EntityUpdate update in updates)
3807 ResendPrimUpdate(update); 3811 ResendPrimUpdate(update);