minor: formatting and comments

This commit is contained in:
Justin Clark-Casey (justincc)
2009-08-28 12:52:40 +01:00
parent cf58c0ab08
commit d649194be3
5 changed files with 24 additions and 15 deletions

View File

@@ -1063,7 +1063,18 @@ 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 bool PrepareLoginToRegion(RegionInfo regionInfo, UserProfileData user, LoginResponse response, IPEndPoint client);
/// <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.
/// </summary>
/// <param name="sim"></param>
/// <param name="user"></param>
/// <param name="response"></param>
/// <param name="remoteClient"></param>
/// <returns>true if the region was successfully contacted, false otherwise</returns>
protected abstract bool PrepareLoginToRegion(
RegionInfo regionInfo, UserProfileData user, LoginResponse response, IPEndPoint client);
/// <summary>
/// Add active gestures of the user to the login response.

View File

@@ -30,7 +30,7 @@ using OpenMetaverse;
namespace OpenSim.Framework
{
/// <summary>
/// A Class for folders which contain users inventory
/// User inventory folder
/// </summary>
public class InventoryFolderBase : InventoryNodeBase
{