diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs index 25519f70cd..0eea3eae32 100644 --- a/OpenSim/Services/Interfaces/IGridService.cs +++ b/OpenSim/Services/Interfaces/IGridService.cs @@ -55,15 +55,11 @@ namespace OpenSim.Services.Interfaces /// /// /// - List RequestNeighbours(UUID scopeID, uint x, uint y); + List GetNeighbours(UUID scopeID, uint x, uint y); - RegionInfo RequestNeighbourInfo(UUID regionID); + SimpleRegionInfo GetRegionByUUID(UUID scopeID, UUID regionID); - RegionInfo RequestClosestRegion(UUID scopeID, string regionName); - - List RequestNeighbourMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY); - // not complete yet, only contains the fields needed for ParcelInfoReqeust - LandData RequestLandData(UUID scopeID, ulong regionHandle, uint x, uint y); + SimpleRegionInfo GetRegionByName(UUID scopeID, string regionName); /// /// Get information about regions starting with the provided name. @@ -78,6 +74,15 @@ namespace OpenSim.Services.Interfaces /// A list of s of regions with matching name. If the /// grid-server couldn't be contacted or returned an error, return null. /// - List RequestNamedRegions(UUID scopeID, string name, int maxNumber); + List GetRegionsByName(UUID scopeID, string name, int maxNumber); + + + // Not sure about these two (diva) + + List RequestNeighbourMapBlocks(UUID scopeID, int minX, int minY, int maxX, int maxY); + // not complete yet, only contains the fields needed for ParcelInfoReqeust + LandData RequestLandData(UUID scopeID, ulong regionHandle, uint x, uint y); + + } }