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/Region/Communications/Hypergrid/HGGridServicesStandalone.cs | |
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/Region/Communications/Hypergrid/HGGridServicesStandalone.cs')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs b/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs index 4dcfb2a..75a78d5 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGGridServicesStandalone.cs | |||
@@ -177,7 +177,7 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
177 | /// </summary> | 177 | /// </summary> |
178 | /// <param name="request"></param> | 178 | /// <param name="request"></param> |
179 | /// <returns></returns> | 179 | /// <returns></returns> |
180 | public virtual XmlRpcResponse PingCheckReply(XmlRpcRequest request) | 180 | public virtual XmlRpcResponse PingCheckReply(XmlRpcRequest request, IPEndPoint remoteClient) |
181 | { | 181 | { |
182 | XmlRpcResponse response = new XmlRpcResponse(); | 182 | XmlRpcResponse response = new XmlRpcResponse(); |
183 | 183 | ||
@@ -198,7 +198,7 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
198 | /// </summary> | 198 | /// </summary> |
199 | /// <param name="request"></param> | 199 | /// <param name="request"></param> |
200 | /// <returns></returns> | 200 | /// <returns></returns> |
201 | public XmlRpcResponse LogOffUser(XmlRpcRequest request) | 201 | public XmlRpcResponse LogOffUser(XmlRpcRequest request, IPEndPoint remoteClient) |
202 | { | 202 | { |
203 | m_log.Debug("[HGrid]: LogOff User Called"); | 203 | m_log.Debug("[HGrid]: LogOff User Called"); |
204 | 204 | ||
@@ -221,7 +221,7 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
221 | /// </summary> | 221 | /// </summary> |
222 | /// <param name="request"></param> | 222 | /// <param name="request"></param> |
223 | /// <returns></returns> | 223 | /// <returns></returns> |
224 | public XmlRpcResponse LandData(XmlRpcRequest request) | 224 | public XmlRpcResponse LandData(XmlRpcRequest request, IPEndPoint remoteClient) |
225 | { | 225 | { |
226 | Hashtable requestData = (Hashtable)request.Params[0]; | 226 | Hashtable requestData = (Hashtable)request.Params[0]; |
227 | ulong regionHandle = Convert.ToUInt64(requestData["region_handle"]); | 227 | ulong regionHandle = Convert.ToUInt64(requestData["region_handle"]); |