aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorMelanie Thielker2017-02-01 15:30:17 +0000
committerMelanie Thielker2017-02-01 15:30:17 +0000
commit5ceb315e3463eaa50abf43a4c07cb37d9486b1fd (patch)
treea77a4a317cb395ee6544c13c1267d7ba7c1892ec /OpenSim/Region/Application/OpenSimBase.cs
parentMake negative asset caching actually work (diff)
downloadopensim-SC_OLD-5ceb315e3463eaa50abf43a4c07cb37d9486b1fd.zip
opensim-SC_OLD-5ceb315e3463eaa50abf43a4c07cb37d9486b1fd.tar.gz
opensim-SC_OLD-5ceb315e3463eaa50abf43a4c07cb37d9486b1fd.tar.bz2
opensim-SC_OLD-5ceb315e3463eaa50abf43a4c07cb37d9486b1fd.tar.xz
Secure sim stats with an (optional) password.
There is way too much in these stats to expose them to the world, at least for some of us.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index b33e2c2..34a9246 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -88,6 +88,7 @@ namespace OpenSim
88 88
89 public string userStatsURI = String.Empty; 89 public string userStatsURI = String.Empty;
90 public string managedStatsURI = String.Empty; 90 public string managedStatsURI = String.Empty;
91 public string managedStatsPassword = String.Empty;
91 92
92 protected bool m_autoCreateClientStack = true; 93 protected bool m_autoCreateClientStack = true;
93 94
@@ -239,6 +240,7 @@ namespace OpenSim
239 m_permsModules = new List<string>(permissionModules.Split(',')); 240 m_permsModules = new List<string>(permissionModules.Split(','));
240 241
241 managedStatsURI = startupConfig.GetString("ManagedStatsRemoteFetchURI", String.Empty); 242 managedStatsURI = startupConfig.GetString("ManagedStatsRemoteFetchURI", String.Empty);
243 managedStatsPassword = startupConfig.GetString("ManagedStatsRemoteFetchPassword", String.Empty);
242 } 244 }
243 245
244 // Load the simulation data service 246 // Load the simulation data service