diff options
Diffstat (limited to 'OpenSim/Framework/Communications/LoginResponse.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginResponse.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginResponse.cs b/OpenSim/Framework/Communications/LoginResponse.cs index db504f9..b2565b1 100644 --- a/OpenSim/Framework/Communications/LoginResponse.cs +++ b/OpenSim/Framework/Communications/LoginResponse.cs | |||
@@ -275,6 +275,22 @@ namespace OpenSim.Framework.Communications | |||
275 | "false"); | 275 | "false"); |
276 | } | 276 | } |
277 | 277 | ||
278 | public XmlRpcResponse CreateLoginBlockedResponse() | ||
279 | { | ||
280 | return | ||
281 | (GenerateFailureResponse("presence", | ||
282 | "Logins are currently restricted. Please try again later", | ||
283 | "false")); | ||
284 | } | ||
285 | |||
286 | public LLSD CreateLoginBlockedResponseLLSD() | ||
287 | { | ||
288 | return GenerateFailureResponseLLSD( | ||
289 | "presence", | ||
290 | "Logins are currently restricted. Please try again later", | ||
291 | "false"); | ||
292 | } | ||
293 | |||
278 | public XmlRpcResponse CreateDeadRegionResponse() | 294 | public XmlRpcResponse CreateDeadRegionResponse() |
279 | { | 295 | { |
280 | return | 296 | return |