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
This commit is contained in:
Dahlia Trimble
2009-03-15 16:17:01 +00:00
parent fa5fef33a9
commit 0d37907c58
3 changed files with 36 additions and 16 deletions

View File

@@ -38,6 +38,9 @@ using OpenSim.Region.Framework.Scenes;
namespace OpenSim.Client.MXP
{
/**
* MXP Client Module which adds MXP support to client / region communication.
*/
public class MXPModule : IRegionModule
{
@@ -70,7 +73,7 @@ namespace OpenSim.Client.MXP
m_port = con.GetInt("Port", m_port);
m_server = new MXPPacketServer(m_port, m_scenes);
m_server = new MXPPacketServer(m_port, m_scenes,m_config.Configs["StandAlone"].GetBoolean("accounts_authenticate",true));
m_ticker.AutoReset = false;
m_ticker.Elapsed += ticker_Elapsed;