* Separate starting a client thread into a separate Start() method (which matches the existing Stop() and Restart() methods)

This commit is contained in:
Justin Clarke Casey
2009-01-12 19:37:56 +00:00
parent 2cfd18b6a2
commit ade107f04f
6 changed files with 47 additions and 20 deletions

View File

@@ -160,6 +160,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
newuser.OnViewerEffect += m_scene.ClientManager.ViewerEffectHandler;
newuser.OnLogout += LogoutHandler;
newuser.OnConnectionClosed += CloseClient;
newuser.Start();
return true;
}