diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs | 8 |
1 files changed, 4 insertions, 4 deletions
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 | |||
87 | /// <param name="proxyEP"></param> | 87 | /// <param name="proxyEP"></param> |
88 | /// <returns></returns> | 88 | /// <returns></returns> |
89 | protected virtual IClientAPI CreateNewCircuit( | 89 | protected virtual IClientAPI CreateNewCircuit( |
90 | EndPoint remoteEP, IScene scene, IAssetCache assetCache, | 90 | EndPoint remoteEP, IScene scene, |
91 | LLPacketServer packServer, AuthenticateResponse sessionInfo, | 91 | LLPacketServer packServer, AuthenticateResponse sessionInfo, |
92 | UUID agentId, UUID sessionId, uint circuitCode, EndPoint proxyEP) | 92 | UUID agentId, UUID sessionId, uint circuitCode, EndPoint proxyEP) |
93 | { | 93 | { |
94 | return | 94 | return |
95 | new LLClientView( | 95 | new LLClientView( |
96 | remoteEP, scene, assetCache, packServer, sessionInfo, agentId, sessionId, circuitCode, proxyEP, | 96 | remoteEP, scene, packServer, sessionInfo, agentId, sessionId, circuitCode, proxyEP, |
97 | m_userSettings); | 97 | m_userSettings); |
98 | } | 98 | } |
99 | 99 | ||
@@ -131,7 +131,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
131 | /// true if a new circuit was created, false if a circuit with the given circuit code already existed | 131 | /// true if a new circuit was created, false if a circuit with the given circuit code already existed |
132 | /// </returns> | 132 | /// </returns> |
133 | public virtual bool AddNewClient( | 133 | public virtual bool AddNewClient( |
134 | EndPoint epSender, UseCircuitCodePacket useCircuit, IAssetCache assetCache, | 134 | EndPoint epSender, UseCircuitCodePacket useCircuit, |
135 | AuthenticateResponse sessionInfo, EndPoint proxyEP) | 135 | AuthenticateResponse sessionInfo, EndPoint proxyEP) |
136 | { | 136 | { |
137 | IClientAPI newuser; | 137 | IClientAPI newuser; |
@@ -150,7 +150,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
150 | 150 | ||
151 | newuser | 151 | newuser |
152 | = CreateNewCircuit( | 152 | = CreateNewCircuit( |
153 | epSender, m_scene, assetCache, this, sessionInfo, agentId, sessionId, circuitCode, proxyEP); | 153 | epSender, m_scene, this, sessionInfo, agentId, sessionId, circuitCode, proxyEP); |
154 | 154 | ||
155 | m_scene.ClientManager.Add(circuitCode, newuser); | 155 | m_scene.ClientManager.Add(circuitCode, newuser); |
156 | 156 | ||