aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/RemoteController
diff options
context:
space:
mode:
authormores2010-11-02 21:46:45 -0400
committerMelanie2010-11-03 01:12:48 +0000
commit1f77f05f023f9ab45e9f8fd0109766a1fe151dba (patch)
treeea6821a2885d1f0ccbe28477230355cd4d14316d /OpenSim/ApplicationPlugins/RemoteController
parentActually calculate the height before setting it, this isn't done automatically (diff)
downloadopensim-SC_OLD-1f77f05f023f9ab45e9f8fd0109766a1fe151dba.zip
opensim-SC_OLD-1f77f05f023f9ab45e9f8fd0109766a1fe151dba.tar.gz
opensim-SC_OLD-1f77f05f023f9ab45e9f8fd0109766a1fe151dba.tar.bz2
opensim-SC_OLD-1f77f05f023f9ab45e9f8fd0109766a1fe151dba.tar.xz
Admin Server can now bind to a private ip address
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/ApplicationPlugins/RemoteController')
-rw-r--r--OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
index 72ac303..cbaa38b 100644
--- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
+++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs
@@ -116,7 +116,9 @@ 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 m_httpServer = MainServer.GetHttpServer((uint)port); 119 string bind_ip_address = m_config.GetString("bind_ip_address", "127.0.0.1");
120 IPAddress ipaddr = IPAddress.Parse( bind_ip_address );
121 m_httpServer = MainServer.GetHttpServer((uint)port,ipaddr);
120 122
121 Dictionary<string, XmlRpcMethod> availableMethods = new Dictionary<string, XmlRpcMethod>(); 123 Dictionary<string, XmlRpcMethod> availableMethods = new Dictionary<string, XmlRpcMethod>();
122 availableMethods["admin_create_region"] = XmlRpcCreateRegionMethod; 124 availableMethods["admin_create_region"] = XmlRpcCreateRegionMethod;