Fix "Abnormal client thread terminations" stat in period CONNECTION STATISTICS to count the number of times clients are disconnected due to ack timeouts.

This has been broken for a long period and would only ever show 0.
0.7.2-post-fixes
Justin Clark-Casey (justincc) 2012-01-24 22:09:13 +00:00
parent 0ffe293692
commit 681502473e
1 changed files with 1 additions and 0 deletions

View File

@ -492,6 +492,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
if ((Environment.TickCount & Int32.MaxValue) - udpClient.TickLastPacketReceived > 1000 * 60)
{
m_log.Warn("[LLUDPSERVER]: Ack timeout, disconnecting " + udpClient.AgentID);
StatsManager.SimExtraStats.AddAbnormalClientThreadTermination();
RemoveClient(udpClient);
return;