Log warning if we try to remove a UDP client that has already been removed.
parent
ed21576ce0
commit
cc27a6cb84
|
@ -1114,6 +1114,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
client.IsLoggingOut = true;
|
client.IsLoggingOut = true;
|
||||||
client.Close();
|
client.Close();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
m_log.WarnFormat(
|
||||||
|
"[LLUDPSERVER]: Tried to remove client with id {0} but not such client in {1}",
|
||||||
|
udpClient.AgentID, m_scene.RegionInfo.RegionName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void IncomingPacketHandler()
|
private void IncomingPacketHandler()
|
||||||
|
|
Loading…
Reference in New Issue