Spin the AddNewClient process off into a new thread to avoid locking up the LLUDPServer (and therefore the entire scene)
parent
14a86de115
commit
40e05f4109
|
@ -909,7 +909,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
client.OnLogout += LogoutHandler;
|
client.OnLogout += LogoutHandler;
|
||||||
|
|
||||||
// Start the IClientAPI
|
// Start the IClientAPI
|
||||||
client.Start();
|
// Spin it off so that it doesn't clog up the LLUDPServer
|
||||||
|
Util.FireAndForget(delegate(object o) { client.Start(); });
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue