From 393a7828584a0bf8564dd351015238365e51b984 Mon Sep 17 00:00:00 2001
From: CasperW
Date: Thu, 25 Feb 2010 18:05:30 +0100
Subject: Fix the crashed session notification from the userserver.
---
.../Framework/Communications/Services/LoginService.cs | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
(limited to 'OpenSim/Framework/Communications/Services/LoginService.cs')
diff --git a/OpenSim/Framework/Communications/Services/LoginService.cs b/OpenSim/Framework/Communications/Services/LoginService.cs
index 71b38ed..824cc57 100644
--- a/OpenSim/Framework/Communications/Services/LoginService.cs
+++ b/OpenSim/Framework/Communications/Services/LoginService.cs
@@ -88,15 +88,7 @@ namespace OpenSim.Framework.Communications.Services
m_welcomeMessage = welcomeMess;
}
}
-
- ///
- /// If the user is already logged in, try to notify the region that the user they've got is dead.
- ///
- ///
- public virtual void LogOffUser(UserProfileData theUser, string message)
- {
- }
-
+
///
/// Called when we receive the client's initial XMLRPC login_to_simulator request message
///
@@ -1056,7 +1048,13 @@ namespace OpenSim.Framework.Communications.Services
protected abstract RegionInfo RequestClosestRegion(string region);
protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle);
- protected abstract RegionInfo GetRegionInfo(UUID homeRegionId);
+ protected abstract RegionInfo GetRegionInfo(UUID homeRegionId);
+
+ ///
+ /// If the user is already logged in, try to notify the region that the user they've got is dead.
+ ///
+ ///
+ public abstract void LogOffUser(UserProfileData theUser, string message);
///
/// Prepare a login to the given region. This involves both telling the region to expect a connection
--
cgit v1.1