diff options
Diffstat (limited to 'OpenSim/Client/MXP/MXPModule.cs')
-rw-r--r-- | OpenSim/Client/MXP/MXPModule.cs | 5 |
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 | ||
39 | namespace OpenSim.Client.MXP | 39 | namespace 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; |