diff options
author | Justin Clarke Casey | 2008-03-22 20:44:15 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-22 20:44:15 +0000 |
commit | 61ae75f3640a9861fbf22ae57b748710080631e7 (patch) | |
tree | c4b27f742df1b691c85bb777c63f3be30a529029 /OpenSim/Framework/Communications | |
parent | * Downgrade 'texture not found' message to DEBUG and stop putting out 'alread... (diff) | |
download | opensim-SC_OLD-61ae75f3640a9861fbf22ae57b748710080631e7.zip opensim-SC_OLD-61ae75f3640a9861fbf22ae57b748710080631e7.tar.gz opensim-SC_OLD-61ae75f3640a9861fbf22ae57b748710080631e7.tar.bz2 opensim-SC_OLD-61ae75f3640a9861fbf22ae57b748710080631e7.tar.xz |
* Catch the occasional resolution exception that comes out of SceneCommunicationService.EnableChildAgents so we can see what hostname is failing
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/IGridServices.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IGridServices.cs b/OpenSim/Framework/Communications/IGridServices.cs index daa43ac..9e34672 100644 --- a/OpenSim/Framework/Communications/IGridServices.cs +++ b/OpenSim/Framework/Communications/IGridServices.cs | |||
@@ -41,7 +41,15 @@ namespace OpenSim.Framework.Communications | |||
41 | RegionCommsListener RegisterRegion(RegionInfo regionInfos); | 41 | RegionCommsListener RegisterRegion(RegionInfo regionInfos); |
42 | 42 | ||
43 | bool DeregisterRegion(RegionInfo regionInfo); | 43 | bool DeregisterRegion(RegionInfo regionInfo); |
44 | |||
45 | /// <summary> | ||
46 | /// Get information about the regions neighbouring the given co-ordinates. | ||
47 | /// </summary> | ||
48 | /// <param name="x"></param> | ||
49 | /// <param name="y"></param> | ||
50 | /// <returns></returns> | ||
44 | List<SimpleRegionInfo> RequestNeighbours(uint x, uint y); | 51 | List<SimpleRegionInfo> RequestNeighbours(uint x, uint y); |
52 | |||
45 | RegionInfo RequestNeighbourInfo(ulong regionHandle); | 53 | RegionInfo RequestNeighbourInfo(ulong regionHandle); |
46 | RegionInfo RequestClosestRegion(string regionName); | 54 | RegionInfo RequestClosestRegion(string regionName); |
47 | Dictionary<string, string> GetGridSettings(); | 55 | Dictionary<string, string> GetGridSettings(); |