diff options
author | Diva Canto | 2015-08-01 09:30:34 -0700 |
---|---|---|
committer | Diva Canto | 2015-08-01 09:30:34 -0700 |
commit | 32d87aa168bf89996a8741b8d67c92afd1bb2531 (patch) | |
tree | 5eb1c38ad98fe32a8e4b80af6460f312c3ddc3a2 /OpenSim/Services/GridService/HypergridLinker.cs | |
parent | Show last online status of group members from the PresenceService in group pr... (diff) | |
download | opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.zip opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.tar.gz opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.tar.bz2 opensim-SC-32d87aa168bf89996a8741b8d67c92afd1bb2531.tar.xz |
Mantis #7664: Added IHypergridLinker interface to establish a contract about what implementers need to provide publicly. This is used by 3rd-party addons such as Wifi.
Diffstat (limited to 'OpenSim/Services/GridService/HypergridLinker.cs')
-rw-r--r-- | OpenSim/Services/GridService/HypergridLinker.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/GridService/HypergridLinker.cs b/OpenSim/Services/GridService/HypergridLinker.cs index a774303..9d016fc 100644 --- a/OpenSim/Services/GridService/HypergridLinker.cs +++ b/OpenSim/Services/GridService/HypergridLinker.cs | |||
@@ -47,7 +47,7 @@ using OpenMetaverse; | |||
47 | 47 | ||
48 | namespace OpenSim.Services.GridService | 48 | namespace OpenSim.Services.GridService |
49 | { | 49 | { |
50 | public class HypergridLinker | 50 | public class HypergridLinker : IHypergridLinker |
51 | { | 51 | { |
52 | private static readonly ILog m_log = | 52 | private static readonly ILog m_log = |
53 | LogManager.GetLogger( | 53 | LogManager.GetLogger( |
@@ -191,7 +191,7 @@ namespace OpenSim.Services.GridService | |||
191 | return TryLinkRegionToCoords(scopeID, mapName, xloc, yloc, UUID.Zero, out reason); | 191 | return TryLinkRegionToCoords(scopeID, mapName, xloc, yloc, UUID.Zero, out reason); |
192 | } | 192 | } |
193 | 193 | ||
194 | private GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, UUID ownerID, out string reason) | 194 | public GridRegion TryLinkRegionToCoords(UUID scopeID, string mapName, int xloc, int yloc, UUID ownerID, out string reason) |
195 | { | 195 | { |
196 | reason = string.Empty; | 196 | reason = string.Empty; |
197 | GridRegion regInfo = null; | 197 | GridRegion regInfo = null; |