aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authormingchen2007-07-06 13:57:49 +0000
committermingchen2007-07-06 13:57:49 +0000
commit93640f1d71115dea680639c4564dcf89ecab4b61 (patch)
treeac9f676e7c983ac4d6d849578f6284ab733b113f /OpenSim/Region
parent*Fixed crash of OpenSim client when in grid mode from a recent commit (diff)
downloadopensim-SC_OLD-93640f1d71115dea680639c4564dcf89ecab4b61.zip
opensim-SC_OLD-93640f1d71115dea680639c4564dcf89ecab4b61.tar.gz
opensim-SC_OLD-93640f1d71115dea680639c4564dcf89ecab4b61.tar.bz2
opensim-SC_OLD-93640f1d71115dea680639c4564dcf89ecab4b61.tar.xz
*Fixed 2 small references to localhost which has some conflicts when resolving.
*Grid mode now gets past region handshake, BUT the client (both nicholas and the normal one) crash as soon as the next step is displayed on the screen
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Examples/SimpleApp/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs
index ad70df8..4567d7e 100644
--- a/OpenSim/Region/Examples/SimpleApp/Program.cs
+++ b/OpenSim/Region/Examples/SimpleApp/Program.cs
@@ -51,7 +51,7 @@ namespace SimpleApp
51 NetworkServersInfo serverInfo = new NetworkServersInfo(); 51 NetworkServersInfo serverInfo = new NetworkServersInfo();
52 CommunicationsLocal communicationsManager = new CommunicationsLocal(serverInfo); 52 CommunicationsLocal communicationsManager = new CommunicationsLocal(serverInfo);
53 53
54 RegionInfo regionInfo = new RegionInfo( 1000, 1000, internalEndPoint, "localhost" ); 54 RegionInfo regionInfo = new RegionInfo( 1000, 1000, internalEndPoint, "127.0.0.1" );
55 55
56 BaseHttpServer httpServer = new BaseHttpServer( internalEndPoint.Port ); 56 BaseHttpServer httpServer = new BaseHttpServer( internalEndPoint.Port );
57 MyWorld world = new MyWorld(packetServer.ClientAPIs, regionInfo, m_circuitManager, communicationsManager, assetCache, httpServer); 57 MyWorld world = new MyWorld(packetServer.ClientAPIs, regionInfo, m_circuitManager, communicationsManager, assetCache, httpServer);