From 657af5e61108b9acc6f9097362e5ebeea7d69a92 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Fri, 8 Aug 2008 06:39:35 +0000 Subject: Update svn properties, minor formatting cleanup. --- OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index 8c11467..aaa8113 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs @@ -464,10 +464,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP { lock (m_DupeTracker) { - if(m_DupeTracker.Count < 1024) + if (m_DupeTracker.Count < 1024) return; - if(System.Environment.TickCount - m_DupeTrackerLastCheck < 2000) + if (System.Environment.TickCount - m_DupeTrackerLastCheck < 2000) return; m_DupeTrackerLastCheck = System.Environment.TickCount; @@ -726,7 +726,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP // Assign sequence number here to prevent out of order packets packet.Header.Sequence = NextPacketSequenceNumber(); - lock(m_NeedAck) + lock (m_NeedAck) { // We want to see that packet arrive if it's reliable if (packet.Header.Reliable) -- cgit v1.1