aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/LoginResponse.cs')
-rw-r--r--OpenSim/Framework/Communications/LoginResponse.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginResponse.cs b/OpenSim/Framework/Communications/LoginResponse.cs
index 763274a..53ec796 100644
--- a/OpenSim/Framework/Communications/LoginResponse.cs
+++ b/OpenSim/Framework/Communications/LoginResponse.cs
@@ -238,6 +238,19 @@ namespace OpenSim.Framework.UserManagement
238 "Could not authenticate your avatar. Please check your username and password, and check the grid if problems persist.", 238 "Could not authenticate your avatar. Please check your username and password, and check the grid if problems persist.",
239 "false"); 239 "false");
240 } 240 }
241
242 /// <summary>
243 /// Response to indicate that login failed because the agent's inventory was not available.
244 /// </summary>
245 /// <returns></returns>
246 public XmlRpcResponse CreateLoginInventoryFailedResponse()
247 {
248 return GenerateFailureResponse(
249 "key",
250 "The agent inventory service is not responding. Please notify the grid operator if this is a grid sim,"
251 + " or the sim operator if this is a standalone sim.",
252 "false");
253 }
241 254
242 public XmlRpcResponse CreateAlreadyLoggedInResponse() 255 public XmlRpcResponse CreateAlreadyLoggedInResponse()
243 { 256 {