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.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 5d3b5b5..1a2d4de 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -4367,6 +4367,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4367 // Count this as a resent packet since we are going to requeue all of the updates contained in it 4367 // Count this as a resent packet since we are going to requeue all of the updates contained in it
4368 Interlocked.Increment(ref m_udpClient.PacketsResent); 4368 Interlocked.Increment(ref m_udpClient.PacketsResent);
4369 4369
4370 // We're not going to worry about interlock yet since its not currently critical that this total count
4371 // is 100% correct
4372 m_udpServer.PacketsResentCount++;
4373
4370 foreach (ObjectPropertyUpdate update in updates) 4374 foreach (ObjectPropertyUpdate update in updates)
4371 ResendPropertyUpdate(update); 4375 ResendPropertyUpdate(update);
4372 } 4376 }