aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Communications/Services/LoginService.cs18
1 files changed, 8 insertions, 10 deletions
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
88 m_welcomeMessage = welcomeMess; 88 m_welcomeMessage = welcomeMess;
89 } 89 }
90 } 90 }
91 91
92 /// <summary>
93 /// If the user is already logged in, try to notify the region that the user they've got is dead.
94 /// </summary>
95 /// <param name="theUser"></param>
96 public virtual void LogOffUser(UserProfileData theUser, string message)
97 {
98 }
99
100 /// <summary> 92 /// <summary>
101 /// Called when we receive the client's initial XMLRPC login_to_simulator request message 93 /// Called when we receive the client's initial XMLRPC login_to_simulator request message
102 /// </summary> 94 /// </summary>
@@ -1056,7 +1048,13 @@ namespace OpenSim.Framework.Communications.Services
1056 1048
1057 protected abstract RegionInfo RequestClosestRegion(string region); 1049 protected abstract RegionInfo RequestClosestRegion(string region);
1058 protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle); 1050 protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle);
1059 protected abstract RegionInfo GetRegionInfo(UUID homeRegionId); 1051 protected abstract RegionInfo GetRegionInfo(UUID homeRegionId);
1052
1053 /// <summary>
1054 /// If the user is already logged in, try to notify the region that the user they've got is dead.
1055 /// </summary>
1056 /// <param name="theUser"></param>
1057 public abstract void LogOffUser(UserProfileData theUser, string message);
1060 1058
1061 /// <summary> 1059 /// <summary>
1062 /// Prepare a login to the given region. This involves both telling the region to expect a connection 1060 /// Prepare a login to the given region. This involves both telling the region to expect a connection