diff options
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginResponse.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginResponse.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginResponse.cs b/OpenSim/Services/LLLoginService/LLLoginResponse.cs index 3366922..240f5b1 100644 --- a/OpenSim/Services/LLLoginService/LLLoginResponse.cs +++ b/OpenSim/Services/LLLoginService/LLLoginResponse.cs | |||
@@ -57,6 +57,7 @@ namespace OpenSim.Services.LLLoginService | |||
57 | public static LLFailedLoginResponse InventoryProblem; | 57 | public static LLFailedLoginResponse InventoryProblem; |
58 | public static LLFailedLoginResponse DeadRegionProblem; | 58 | public static LLFailedLoginResponse DeadRegionProblem; |
59 | public static LLFailedLoginResponse LoginBlockedProblem; | 59 | public static LLFailedLoginResponse LoginBlockedProblem; |
60 | public static LLFailedLoginResponse UnverifiedAccountProblem; | ||
60 | public static LLFailedLoginResponse AlreadyLoggedInProblem; | 61 | public static LLFailedLoginResponse AlreadyLoggedInProblem; |
61 | public static LLFailedLoginResponse InternalError; | 62 | public static LLFailedLoginResponse InternalError; |
62 | 63 | ||
@@ -80,6 +81,10 @@ namespace OpenSim.Services.LLLoginService | |||
80 | LoginBlockedProblem = new LLFailedLoginResponse("presence", | 81 | LoginBlockedProblem = new LLFailedLoginResponse("presence", |
81 | "Logins are currently restricted. Please try again later.", | 82 | "Logins are currently restricted. Please try again later.", |
82 | "false"); | 83 | "false"); |
84 | UnverifiedAccountProblem = new LLFailedLoginResponse("presence", | ||
85 | "Your account has not yet been verified. Please check " + | ||
86 | "your email and click the provided link.", | ||
87 | "false"); | ||
83 | AlreadyLoggedInProblem = new LLFailedLoginResponse("presence", | 88 | AlreadyLoggedInProblem = new LLFailedLoginResponse("presence", |
84 | "You appear to be already logged in. " + | 89 | "You appear to be already logged in. " + |
85 | "If this is not the case please wait for your session to timeout. " + | 90 | "If this is not the case please wait for your session to timeout. " + |
@@ -326,6 +331,7 @@ namespace OpenSim.Services.LLLoginService | |||
326 | private void FillOutRegionData(GridRegion destination) | 331 | private void FillOutRegionData(GridRegion destination) |
327 | { | 332 | { |
328 | IPEndPoint endPoint = destination.ExternalEndPoint; | 333 | IPEndPoint endPoint = destination.ExternalEndPoint; |
334 | if (endPoint == null) return; | ||
329 | SimAddress = endPoint.Address.ToString(); | 335 | SimAddress = endPoint.Address.ToString(); |
330 | SimPort = (uint)endPoint.Port; | 336 | SimPort = (uint)endPoint.Port; |
331 | RegionX = (uint)destination.RegionLocX; | 337 | RegionX = (uint)destination.RegionLocX; |