diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index efc910ad56..a7dd35ab9e 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -79,7 +79,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP private bool m_clientBlocked = false; private int m_probesWithNoIngressPackets = 0; - private int m_lastPacketsReceived = 0; + //private int m_lastPacketsReceived = 0; private byte[] ZeroOutBuffer = new byte[4096]; private readonly LLUUID m_agentId; @@ -245,7 +245,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP private SetScriptRunning handlerSetScriptRunning = null; private UpdateVector handlerAutoPilotGo = null; - private TerrainUnacked handlerUnackedTerrain = null; + //private TerrainUnacked handlerUnackedTerrain = null; //** diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index eaff5a4a73..186dd84bc2 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs @@ -137,7 +137,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP // private Dictionary m_DupeTracker = new Dictionary(); - private uint m_DupeTrackerWindow = 30; + //private uint m_DupeTrackerWindow = 30; // Values for the SimStatsReporter // @@ -450,21 +450,21 @@ namespace OpenSim.Region.ClientStack.LindenUDP // We can't keep an unlimited record of dupes. This will prune the // dictionary by age. // - private void PruneDupeTracker() - { - lock (m_DupeTracker) - { - Dictionary packs = - new Dictionary(m_DupeTracker); - - foreach (uint pack in packs.Keys) - { - if (Util.UnixTimeSinceEpoch() - m_DupeTracker[pack] > - m_DupeTrackerWindow) - m_DupeTracker.Remove(pack); - } - } - } +// private void PruneDupeTracker() +// { +// lock (m_DupeTracker) +// { +// Dictionary packs = +// new Dictionary(m_DupeTracker); +// +// foreach (uint pack in packs.Keys) +// { +// if (Util.UnixTimeSinceEpoch() - m_DupeTracker[pack] > +// m_DupeTrackerWindow) +// m_DupeTracker.Remove(pack); +// } +// } +// } public void InPacket(Packet packet) {