diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tests/Clients/Grid/GridClient.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Tests/Clients/Grid/GridClient.cs b/OpenSim/Tests/Clients/Grid/GridClient.cs index fed7a16..7d3aee3 100644 --- a/OpenSim/Tests/Clients/Grid/GridClient.cs +++ b/OpenSim/Tests/Clients/Grid/GridClient.cs | |||
@@ -47,7 +47,7 @@ namespace OpenSim.Tests.Clients.GridClient | |||
47 | // private static readonly ILog m_log = | 47 | // private static readonly ILog m_log = |
48 | // LogManager.GetLogger( | 48 | // LogManager.GetLogger( |
49 | // MethodBase.GetCurrentMethod().DeclaringType); | 49 | // MethodBase.GetCurrentMethod().DeclaringType); |
50 | 50 | ||
51 | public static void Main(string[] args) | 51 | public static void Main(string[] args) |
52 | { | 52 | { |
53 | ConsoleAppender consoleAppender = new ConsoleAppender(); | 53 | ConsoleAppender consoleAppender = new ConsoleAppender(); |
@@ -62,7 +62,7 @@ namespace OpenSim.Tests.Clients.GridClient | |||
62 | GridRegion r2 = CreateRegion("Test Region 2", 1001, 1000); | 62 | GridRegion r2 = CreateRegion("Test Region 2", 1001, 1000); |
63 | GridRegion r3 = CreateRegion("Test Region 3", 1005, 1000); | 63 | GridRegion r3 = CreateRegion("Test Region 3", 1005, 1000); |
64 | 64 | ||
65 | Console.WriteLine("[GRID CLIENT]: *** Registering region 1"); | 65 | Console.WriteLine("[GRID CLIENT]: *** Registering region 1"); |
66 | string msg = m_Connector.RegisterRegion(UUID.Zero, r1); | 66 | string msg = m_Connector.RegisterRegion(UUID.Zero, r1); |
67 | if (msg == String.Empty) | 67 | if (msg == String.Empty) |
68 | Console.WriteLine("[GRID CLIENT]: Successfully registered region 1"); | 68 | Console.WriteLine("[GRID CLIENT]: Successfully registered region 1"); |
@@ -149,7 +149,7 @@ namespace OpenSim.Tests.Clients.GridClient | |||
149 | Console.WriteLine("[GRID CLIENT]: GetRegionsByName returned " + regions.Count + " regions"); | 149 | Console.WriteLine("[GRID CLIENT]: GetRegionsByName returned " + regions.Count + " regions"); |
150 | 150 | ||
151 | Console.WriteLine("[GRID CLIENT]: *** GetRegionRange (this should return 2 regions)"); | 151 | Console.WriteLine("[GRID CLIENT]: *** GetRegionRange (this should return 2 regions)"); |
152 | regions = m_Connector.GetRegionRange(UUID.Zero, | 152 | regions = m_Connector.GetRegionRange(UUID.Zero, |
153 | (int)Util.RegionToWorldLoc(900), (int)Util.RegionToWorldLoc(1002), | 153 | (int)Util.RegionToWorldLoc(900), (int)Util.RegionToWorldLoc(1002), |
154 | (int)Util.RegionToWorldLoc(900), (int)Util.RegionToWorldLoc(1002) ); | 154 | (int)Util.RegionToWorldLoc(900), (int)Util.RegionToWorldLoc(1002) ); |
155 | if (regions == null) | 155 | if (regions == null) |
@@ -198,7 +198,7 @@ namespace OpenSim.Tests.Clients.GridClient | |||
198 | region.ExternalHostName = "127.0.0.1"; | 198 | region.ExternalHostName = "127.0.0.1"; |
199 | region.HttpPort = 9000; | 199 | region.HttpPort = 9000; |
200 | region.InternalEndPoint = new System.Net.IPEndPoint(System.Net.IPAddress.Parse("0.0.0.0"), 9000); | 200 | region.InternalEndPoint = new System.Net.IPEndPoint(System.Net.IPAddress.Parse("0.0.0.0"), 9000); |
201 | 201 | ||
202 | return region; | 202 | return region; |
203 | } | 203 | } |
204 | } | 204 | } |