diff options
Diffstat (limited to 'OpenSim/Framework/NetworkServersInfo.cs')
-rw-r--r-- | OpenSim/Framework/NetworkServersInfo.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Framework/NetworkServersInfo.cs b/OpenSim/Framework/NetworkServersInfo.cs index 6f8ff7d..cf1457d 100644 --- a/OpenSim/Framework/NetworkServersInfo.cs +++ b/OpenSim/Framework/NetworkServersInfo.cs | |||
@@ -80,8 +80,10 @@ namespace OpenSim.Framework | |||
80 | m_defaultHomeLocX = (uint) config.Configs["StandAlone"].GetInt("default_location_x", 1000); | 80 | m_defaultHomeLocX = (uint) config.Configs["StandAlone"].GetInt("default_location_x", 1000); |
81 | m_defaultHomeLocY = (uint) config.Configs["StandAlone"].GetInt("default_location_y", 1000); | 81 | m_defaultHomeLocY = (uint) config.Configs["StandAlone"].GetInt("default_location_y", 1000); |
82 | 82 | ||
83 | HttpListenerPort = (uint) config.Configs["Network"].GetInt("http_listener_port", (int) DefaultHttpListenerPort); | 83 | HttpListenerPort = |
84 | RemotingListenerPort = (uint) config.Configs["Network"].GetInt("remoting_listener_port", (int) RemotingListenerPort); | 84 | (uint) config.Configs["Network"].GetInt("http_listener_port", (int) DefaultHttpListenerPort); |
85 | RemotingListenerPort = | ||
86 | (uint) config.Configs["Network"].GetInt("remoting_listener_port", (int) RemotingListenerPort); | ||
85 | GridURL = | 87 | GridURL = |
86 | config.Configs["Network"].GetString("grid_server_url", | 88 | config.Configs["Network"].GetString("grid_server_url", |
87 | "http://127.0.0.1:" + GridConfig.DefaultHttpPort.ToString()); | 89 | "http://127.0.0.1:" + GridConfig.DefaultHttpPort.ToString()); |
@@ -98,4 +100,4 @@ namespace OpenSim.Framework | |||
98 | InventoryConfig.DefaultHttpPort.ToString()); | 100 | InventoryConfig.DefaultHttpPort.ToString()); |
99 | } | 101 | } |
100 | } | 102 | } |
101 | } | 103 | } \ No newline at end of file |