aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs13
1 files changed, 8 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index 3539100..99e7aba 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -2055,12 +2055,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
2055 { 2055 {
2056 ClientLogoutsDueToNoReceives++; 2056 ClientLogoutsDueToNoReceives++;
2057 2057
2058 m_log.WarnFormat( 2058 if (client.SceneAgent != null)
2059 "[LLUDPSERVER]: No packets received from {0} agent of {1} for {2}ms in {3}. Disconnecting.", 2059 {
2060 client.SceneAgent.IsChildAgent ? "child" : "root", client.Name, timeoutTicks, m_scene.Name); 2060 m_log.WarnFormat(
2061 "[LLUDPSERVER]: No packets received from {0} agent of {1} for {2}ms in {3}. Disconnecting.",
2062 client.SceneAgent.IsChildAgent ? "child" : "root", client.Name, timeoutTicks, m_scene.Name);
2061 2063
2062 if (client.SceneAgent != null && !client.SceneAgent.IsChildAgent) 2064 if (!client.SceneAgent.IsChildAgent)
2063 client.Kick("Simulator logged you out due to connection timeout."); 2065 client.Kick("Simulator logged you out due to connection timeout.");
2066 }
2064 } 2067 }
2065 2068
2066 if (!m_scene.CloseAgent(client.AgentId, true)) 2069 if (!m_scene.CloseAgent(client.AgentId, true))