diff options
author | Justin Clark-Casey (justincc) | 2012-06-07 04:00:29 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-07 04:00:29 +0100 |
commit | 7550b97e65fa873b42624648747cec3e12a8e689 (patch) | |
tree | cc2c9fbd06d8d53aee8ac506c7bf7a7cf3a347c7 | |
parent | Allow the thread watchdog to accept an alarm method that is invoked if the ti... (diff) | |
download | opensim-SC_OLD-7550b97e65fa873b42624648747cec3e12a8e689.zip opensim-SC_OLD-7550b97e65fa873b42624648747cec3e12a8e689.tar.gz opensim-SC_OLD-7550b97e65fa873b42624648747cec3e12a8e689.tar.bz2 opensim-SC_OLD-7550b97e65fa873b42624648747cec3e12a8e689.tar.xz |
Log warning if we try to remove a UDP client that has already been removed.
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index e37adb8..09bb52c 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -1114,6 +1114,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1114 | client.IsLoggingOut = true; | 1114 | client.IsLoggingOut = true; |
1115 | client.Close(); | 1115 | client.Close(); |
1116 | } | 1116 | } |
1117 | else | ||
1118 | { | ||
1119 | m_log.WarnFormat( | ||
1120 | "[LLUDPSERVER]: Tried to remove client with id {0} but not such client in {1}", | ||
1121 | udpClient.AgentID, m_scene.RegionInfo.RegionName); | ||
1122 | } | ||
1117 | } | 1123 | } |
1118 | 1124 | ||
1119 | private void IncomingPacketHandler() | 1125 | private void IncomingPacketHandler() |