diff options
author | Adam Frisby | 2009-05-23 06:05:20 +0000 |
---|---|---|
committer | Adam Frisby | 2009-05-23 06:05:20 +0000 |
commit | 31baeef469d72a9dc13cf4f56392b9f740f71cba (patch) | |
tree | ac50806ced72c5b296645bf061a3d9176a41075c /OpenSim/Client/Linden | |
parent | * Breaks OpenSim.. err I mean.. adds NAT translation support to EnableSimulat... (diff) | |
download | opensim-SC_OLD-31baeef469d72a9dc13cf4f56392b9f740f71cba.zip opensim-SC_OLD-31baeef469d72a9dc13cf4f56392b9f740f71cba.tar.gz opensim-SC_OLD-31baeef469d72a9dc13cf4f56392b9f740f71cba.tar.bz2 opensim-SC_OLD-31baeef469d72a9dc13cf4f56392b9f740f71cba.tar.xz |
* Pipes requestors IP address through all XmlRpcRequest delegates. This is needed to be able to 'NAT-wrap' the login sequence.
* If you have something using XmlRpc that isn't in core, change your method signature from:
(XmlRpcRequest request)
to:
(XmlRpcRequest request, IPEndPoint remoteClient)
Diffstat (limited to 'OpenSim/Client/Linden')
-rw-r--r-- | OpenSim/Client/Linden/LLProxyLoginModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Client/Linden/LLProxyLoginModule.cs b/OpenSim/Client/Linden/LLProxyLoginModule.cs index b7b9adb..88b7972 100644 --- a/OpenSim/Client/Linden/LLProxyLoginModule.cs +++ b/OpenSim/Client/Linden/LLProxyLoginModule.cs | |||
@@ -175,7 +175,7 @@ namespace OpenSim.Client.Linden | |||
175 | /// </summary> | 175 | /// </summary> |
176 | /// <param name="request"></param> | 176 | /// <param name="request"></param> |
177 | /// <returns></returns> | 177 | /// <returns></returns> |
178 | public XmlRpcResponse ExpectUser(XmlRpcRequest request) | 178 | public XmlRpcResponse ExpectUser(XmlRpcRequest request, IPEndPoint remoteClient) |
179 | { | 179 | { |
180 | Hashtable requestData = (Hashtable)request.Params[0]; | 180 | Hashtable requestData = (Hashtable)request.Params[0]; |
181 | AgentCircuitData agentData = new AgentCircuitData(); | 181 | AgentCircuitData agentData = new AgentCircuitData(); |
@@ -285,7 +285,7 @@ namespace OpenSim.Client.Linden | |||
285 | /// </summary> | 285 | /// </summary> |
286 | /// <param name="request"></param> | 286 | /// <param name="request"></param> |
287 | /// <returns></returns> | 287 | /// <returns></returns> |
288 | public XmlRpcResponse LogOffUser(XmlRpcRequest request) | 288 | public XmlRpcResponse LogOffUser(XmlRpcRequest request, IPEndPoint remoteClient) |
289 | { | 289 | { |
290 | m_log.Debug("[CONNECTION DEBUGGING]: LogOff User Called"); | 290 | m_log.Debug("[CONNECTION DEBUGGING]: LogOff User Called"); |
291 | 291 | ||