mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
* Consolidated adding / removing ClientManager IClientAPIs to two places in Scene
* Added some missing implementations of IClientAPI.RemoteEndPoint * Added a ClientManager.Remove(UUID) overload * Removed a reference to a missing project from prebuild.xml
This commit is contained in:
@@ -339,12 +339,6 @@ namespace OpenSim.Client.MXP.PacketHandler
|
||||
m_clients.Add(client);
|
||||
m_log.Debug("[MXP ClientStack]: Created ClientView.");
|
||||
|
||||
|
||||
m_log.Debug("[MXP ClientStack]: Adding ClientView to Scene...");
|
||||
scene.ClientManager.Add(client.AgentId, client.RemoteEndPoint, client);
|
||||
m_log.Debug("[MXP ClientStack]: Added ClientView to Scene.");
|
||||
|
||||
|
||||
client.MXPSendSynchronizationBegin(m_scenes[new UUID(joinRequestMessage.BubbleId)].SceneContents.GetTotalObjectsCount());
|
||||
|
||||
m_log.Debug("[MXP ClientStack]: Starting ClientView...");
|
||||
|
||||
@@ -207,6 +207,11 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
|
||||
get { throw new System.NotImplementedException(); }
|
||||
}
|
||||
|
||||
public IPEndPoint RemoteEndPoint
|
||||
{
|
||||
get { throw new System.NotImplementedException(); }
|
||||
}
|
||||
|
||||
public event GenericMessage OnGenericMessage = delegate { };
|
||||
public event ImprovedInstantMessage OnInstantMessage = delegate { };
|
||||
public event ChatMessage OnChatFromClient = delegate { };
|
||||
|
||||
Reference in New Issue
Block a user