aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorCasperW2010-02-25 18:05:30 +0100
committerCasperW2010-02-25 18:05:30 +0100
commit393a7828584a0bf8564dd351015238365e51b984 (patch)
tree85f380b609b4f411e3db6868837a40446f7ed285 /OpenSim/Framework
parentAllow particles and texture anims to be persisted to XML. This behaviour is e... (diff)
downloadopensim-SC_OLD-393a7828584a0bf8564dd351015238365e51b984.zip
opensim-SC_OLD-393a7828584a0bf8564dd351015238365e51b984.tar.gz
opensim-SC_OLD-393a7828584a0bf8564dd351015238365e51b984.tar.bz2
opensim-SC_OLD-393a7828584a0bf8564dd351015238365e51b984.tar.xz
Fix the crashed session notification from the userserver.
Diffstat (limited to 'OpenSim/Framework')
-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