diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Services/HGLoginAuthService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Services/HGLoginAuthService.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs b/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs index b62e4a2..3756cf5 100644 --- a/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs +++ b/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs | |||
@@ -86,10 +86,10 @@ namespace OpenSim.Framework.Communications.Services | |||
86 | m_serversInfo = sinfo; | 86 | m_serversInfo = sinfo; |
87 | } | 87 | } |
88 | 88 | ||
89 | public override XmlRpcResponse XmlRpcLoginMethod(XmlRpcRequest request) | 89 | public override XmlRpcResponse XmlRpcLoginMethod(XmlRpcRequest request, IPEndPoint remoteClient) |
90 | { | 90 | { |
91 | m_log.Info("[HGLOGIN]: HGLogin called " + request.MethodName); | 91 | m_log.Info("[HGLOGIN]: HGLogin called " + request.MethodName); |
92 | XmlRpcResponse response = base.XmlRpcLoginMethod(request); | 92 | XmlRpcResponse response = base.XmlRpcLoginMethod(request, remoteClient); |
93 | Hashtable responseData = (Hashtable)response.Value; | 93 | Hashtable responseData = (Hashtable)response.Value; |
94 | 94 | ||
95 | responseData["grid_service"] = m_serversInfo.GridURL; | 95 | responseData["grid_service"] = m_serversInfo.GridURL; |
@@ -132,7 +132,7 @@ namespace OpenSim.Framework.Communications.Services | |||
132 | return response; | 132 | return response; |
133 | } | 133 | } |
134 | 134 | ||
135 | public XmlRpcResponse XmlRpcGenerateKeyMethod(XmlRpcRequest request) | 135 | public XmlRpcResponse XmlRpcGenerateKeyMethod(XmlRpcRequest request, IPEndPoint remoteClient) |
136 | { | 136 | { |
137 | // Verify the key of who's calling | 137 | // Verify the key of who's calling |
138 | UUID userID = UUID.Zero; | 138 | UUID userID = UUID.Zero; |
@@ -157,7 +157,7 @@ namespace OpenSim.Framework.Communications.Services | |||
157 | return response; | 157 | return response; |
158 | } | 158 | } |
159 | 159 | ||
160 | public XmlRpcResponse XmlRpcVerifyKeyMethod(XmlRpcRequest request) | 160 | public XmlRpcResponse XmlRpcVerifyKeyMethod(XmlRpcRequest request, IPEndPoint remoteClient) |
161 | { | 161 | { |
162 | bool success = false; | 162 | bool success = false; |
163 | 163 | ||