aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client/MXP/MXPModule.cs
diff options
context:
space:
mode:
authorDahlia Trimble2009-03-15 16:17:01 +0000
committerDahlia Trimble2009-03-15 16:17:01 +0000
commit0d37907c581f0417b7dece11417bd2e61de5a61e (patch)
tree27b152b39bf7d06b23e05f369b6f9ff22d40a865 /OpenSim/Client/MXP/MXPModule.cs
parentfixed propagation of normalized sculpt mesh vertex normals (diff)
downloadopensim-SC_OLD-0d37907c581f0417b7dece11417bd2e61de5a61e.zip
opensim-SC_OLD-0d37907c581f0417b7dece11417bd2e61de5a61e.tar.gz
opensim-SC_OLD-0d37907c581f0417b7dece11417bd2e61de5a61e.tar.bz2
opensim-SC_OLD-0d37907c581f0417b7dece11417bd2e61de5a61e.tar.xz
Thanks Tommil for a patch which added support for creating user accounts automatically in local sandbox if
accounts authenticate is set off and connecting with MXP protocol. Mantis #3300
Diffstat (limited to 'OpenSim/Client/MXP/MXPModule.cs')
-rw-r--r--OpenSim/Client/MXP/MXPModule.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Client/MXP/MXPModule.cs b/OpenSim/Client/MXP/MXPModule.cs
index e0891ca..6ec7744 100644
--- a/OpenSim/Client/MXP/MXPModule.cs
+++ b/OpenSim/Client/MXP/MXPModule.cs
@@ -38,6 +38,9 @@ using OpenSim.Region.Framework.Scenes;
38 38
39namespace OpenSim.Client.MXP 39namespace OpenSim.Client.MXP
40{ 40{
41 /**
42 * MXP Client Module which adds MXP support to client / region communication.
43 */
41 public class MXPModule : IRegionModule 44 public class MXPModule : IRegionModule
42 { 45 {
43 46
@@ -70,7 +73,7 @@ namespace OpenSim.Client.MXP
70 73
71 m_port = con.GetInt("Port", m_port); 74 m_port = con.GetInt("Port", m_port);
72 75
73 m_server = new MXPPacketServer(m_port, m_scenes); 76 m_server = new MXPPacketServer(m_port, m_scenes,m_config.Configs["StandAlone"].GetBoolean("accounts_authenticate",true));
74 77
75 m_ticker.AutoReset = false; 78 m_ticker.AutoReset = false;
76 m_ticker.Elapsed += ticker_Elapsed; 79 m_ticker.Elapsed += ticker_Elapsed;