aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController
diff options
context:
space:
mode:
authorMelanie2010-11-03 01:11:04 +0000
committerMelanie2010-11-03 01:13:01 +0000
commitc25f84e31c9ce20b887d2aba638962984ef20941 (patch)
treeea75923a0d4ab077064a48cc9a5b184b04178188 /OpenSim/ApplicationPlugins/RemoteController
parentFix config items. Less used / expert items go in OpenSimDefaults.ini (diff)
downloadopensim-SC_OLD-c25f84e31c9ce20b887d2aba638962984ef20941.zip
opensim-SC_OLD-c25f84e31c9ce20b887d2aba638962984ef20941.tar.gz
opensim-SC_OLD-c25f84e31c9ce20b887d2aba638962984ef20941.tar.bz2
opensim-SC_OLD-c25f84e31c9ce20b887d2aba638962984ef20941.tar.xz
Change the default of the new bind_ip_address RemoteAdmin option to 0.0.0.0
so it reflects the prior default. We are not in the habot of changing default behavior without good reason and making localhost the default would break most current use cases.
Diffstat (limited to 'OpenSim/ApplicationPlugins/RemoteController')
-rw-r--r--OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
index cbaa38b..854307c 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -116,7 +116,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController
116 int port = m_config.GetInt("port", 0); 116 int port = m_config.GetInt("port", 0);
117 117
118 m_application = openSim; 118 m_application = openSim;
119 string bind_ip_address = m_config.GetString("bind_ip_address", "127.0.0.1"); 119 string bind_ip_address = m_config.GetString("bind_ip_address", "0.0.0.0");
120 IPAddress ipaddr = IPAddress.Parse( bind_ip_address ); 120 IPAddress ipaddr = IPAddress.Parse( bind_ip_address );
121 m_httpServer = MainServer.GetHttpServer((uint)port,ipaddr); 121 m_httpServer = MainServer.GetHttpServer((uint)port,ipaddr);
122 122