Fix the crashed session notification from the userserver.
parent
7f61de8f57
commit
393a782858
|
@ -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>
|
/// <summary>
|
||||||
/// Called when we receive the client's initial XMLRPC login_to_simulator request message
|
/// Called when we receive the client's initial XMLRPC login_to_simulator request message
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1058,6 +1050,12 @@ namespace OpenSim.Framework.Communications.Services
|
||||||
protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle);
|
protected abstract RegionInfo GetRegionInfo(ulong homeRegionHandle);
|
||||||
protected abstract RegionInfo GetRegionInfo(UUID homeRegionId);
|
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>
|
/// <summary>
|
||||||
/// Prepare a login to the given region. This involves both telling the region to expect a connection
|
/// 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.
|
/// and appropriately customising the response to the user.
|
||||||
|
|
Loading…
Reference in New Issue