Fix the crashed session notification from the userserver.

avinationmerge
CasperW 2010-02-25 18:05:30 +01:00
parent 7f61de8f57
commit 393a782858
1 changed files with 8 additions and 10 deletions

View File

@ -89,14 +89,6 @@ namespace OpenSim.Framework.Communications.Services
}
}
/// <summary>
/// If the user is already logged in, try to notify the region that the user they've got is dead.
/// </summary>
/// <param name="theUser"></param>
public virtual void LogOffUser(UserProfileData theUser, string message)
{
}
/// <summary>
/// Called when we receive the client's initial XMLRPC login_to_simulator request message
/// </summary>
@ -1058,6 +1050,12 @@ namespace OpenSim.Framework.Communications.Services
protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle);
protected abstract RegionInfo GetRegionInfo(UUID homeRegionId);
/// <summary>
/// If the user is already logged in, try to notify the region that the user they've got is dead.
/// </summary>
/// <param name="theUser"></param>
public abstract void LogOffUser(UserProfileData theUser, string message);
/// <summary>
/// Prepare a login to the given region. This involves both telling the region to expect a connection
/// and appropriately customising the response to the user.