From 0d8284c7a1f5184ce50edfdf40c0b8361893426e Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 10 Aug 2009 08:14:57 -0700 Subject: Removed IAssetCache. WARNING: PLEASE MAKE SURE TO USE THIS NEW bin/OpenSim.addin.xml --- OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs index b154144..56219d1 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs @@ -87,13 +87,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP /// /// protected virtual IClientAPI CreateNewCircuit( - EndPoint remoteEP, IScene scene, IAssetCache assetCache, + EndPoint remoteEP, IScene scene, LLPacketServer packServer, AuthenticateResponse sessionInfo, UUID agentId, UUID sessionId, uint circuitCode, EndPoint proxyEP) { return new LLClientView( - remoteEP, scene, assetCache, packServer, sessionInfo, agentId, sessionId, circuitCode, proxyEP, + remoteEP, scene, packServer, sessionInfo, agentId, sessionId, circuitCode, proxyEP, m_userSettings); } @@ -131,7 +131,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP /// true if a new circuit was created, false if a circuit with the given circuit code already existed /// public virtual bool AddNewClient( - EndPoint epSender, UseCircuitCodePacket useCircuit, IAssetCache assetCache, + EndPoint epSender, UseCircuitCodePacket useCircuit, AuthenticateResponse sessionInfo, EndPoint proxyEP) { IClientAPI newuser; @@ -150,7 +150,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP newuser = CreateNewCircuit( - epSender, m_scene, assetCache, this, sessionInfo, agentId, sessionId, circuitCode, proxyEP); + epSender, m_scene, this, sessionInfo, agentId, sessionId, circuitCode, proxyEP); m_scene.ClientManager.Add(circuitCode, newuser); -- cgit v1.1