aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2019-02-26 00:43:44 +0000
committerUbitUmarov2019-02-26 00:43:44 +0000
commita07951b04471ff4d0c6204f2c13c49248f0b7d19 (patch)
tree1c3578e9e7d1075dda0c64de832c59f478ad3216
parentzero decode using a buffer from the pool (diff)
downloadopensim-SC-a07951b04471ff4d0c6204f2c13c49248f0b7d19.zip
opensim-SC-a07951b04471ff4d0c6204f2c13c49248f0b7d19.tar.gz
opensim-SC-a07951b04471ff4d0c6204f2c13c49248f0b7d19.tar.bz2
opensim-SC-a07951b04471ff4d0c6204f2c13c49248f0b7d19.tar.xz
fix UDPBuffersPoolCount value (readable with stats show clientstack
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index e931f3b..ba5a2f3 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -687,7 +687,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
687 "clientstack", 687 "clientstack",
688 Scene.Name, 688 Scene.Name,
689 StatType.Pull, 689 StatType.Pull,
690 stat => stat.Value = m_udpBuffersPoolPtr, 690 stat => stat.Value = m_udpBuffersPoolPtr + 1,
691 StatVerbosity.Debug)); 691 StatVerbosity.Debug));
692 692
693 LLUDPServerCommands commands = new LLUDPServerCommands(MainConsole.Instance, this); 693 LLUDPServerCommands commands = new LLUDPServerCommands(MainConsole.Instance, this);
@@ -1582,7 +1582,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1582 { 1582 {
1583 m_log.DebugFormat("[LLUDPSERVER]: Client created but no pending queue present"); 1583 m_log.DebugFormat("[LLUDPSERVER]: Client created but no pending queue present");
1584 return; 1584 return;
1585
1586 } 1585 }
1587 m_pendingCache.Remove(endPoint); 1586 m_pendingCache.Remove(endPoint);
1588 } 1587 }