diff options
author | Terry | 2019-11-12 11:02:10 -0500 |
---|---|---|
committer | UbitUmarov | 2019-11-14 05:26:54 +0000 |
commit | 2f79f463ea07369f6ec154c67b25705cf1a2a616 (patch) | |
tree | da64db8ae91f5dc6364dfb0f3c2cd1a026432cc2 /OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs | |
parent | mantis 8627: handle the case constant compareOp constant on Yengine (diff) | |
download | opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.zip opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.tar.gz opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.tar.bz2 opensim-SC-2f79f463ea07369f6ec154c67b25705cf1a2a616.tar.xz |
Attempt to fix the issue where, when logging into the grid, the user supplies a region name, but instead of going to the specific region, they are sent to a region "Like" the one specified.
Signed-off-by: Terry <terry@digiworldz.com>
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs')
-rw-r--r-- | OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs b/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs index f8eebbe..04de4d7 100644 --- a/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs +++ b/OpenSim/Services/Connectors/SimianGrid/SimianGridServiceConnector.cs | |||
@@ -100,6 +100,8 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
100 | 100 | ||
101 | #region IGridService | 101 | #region IGridService |
102 | 102 | ||
103 | |||
104 | |||
103 | public string RegisterRegion(UUID scopeID, GridRegion regionInfo) | 105 | public string RegisterRegion(UUID scopeID, GridRegion regionInfo) |
104 | { | 106 | { |
105 | IPEndPoint ext = regionInfo.ExternalEndPoint; | 107 | IPEndPoint ext = regionInfo.ExternalEndPoint; |
@@ -245,6 +247,12 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
245 | } | 247 | } |
246 | } | 248 | } |
247 | 249 | ||
250 | public GridRegion GetRegionByNameSpecific(UUID scopeID, string regionName) | ||
251 | { | ||
252 | |||
253 | return null; | ||
254 | } | ||
255 | |||
248 | public GridRegion GetRegionByName(UUID scopeID, string regionName) | 256 | public GridRegion GetRegionByName(UUID scopeID, string regionName) |
249 | { | 257 | { |
250 | List<GridRegion> regions = GetRegionsByName(scopeID, regionName, 1); | 258 | List<GridRegion> regions = GetRegionsByName(scopeID, regionName, 1); |