aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorMelanie2011-11-24 01:16:37 +0000
committerMelanie2011-11-24 01:16:37 +0000
commita8270cb48cf8dbca7595da5963d8fafdb1141529 (patch)
treecf878acca0c652239f4441c3783647b6b0b688a6 /OpenSim/Region/Application/OpenSimBase.cs
parentMerge branch 'master' into bigmerge (diff)
parentAppend asset ID to URL for storage requests to allow caching proxies to work ... (diff)
downloadopensim-SC_OLD-a8270cb48cf8dbca7595da5963d8fafdb1141529.zip
opensim-SC_OLD-a8270cb48cf8dbca7595da5963d8fafdb1141529.tar.gz
opensim-SC_OLD-a8270cb48cf8dbca7595da5963d8fafdb1141529.tar.bz2
opensim-SC_OLD-a8270cb48cf8dbca7595da5963d8fafdb1141529.tar.xz
Merge branch 'master' into bigmerge
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 542211a..8e1eb95 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -112,6 +112,13 @@ namespace OpenSim
112 get { return m_clientServers; } 112 get { return m_clientServers; }
113 } 113 }
114 114
115 protected EnvConfigSource m_EnvConfigSource = new EnvConfigSource();
116
117 public EnvConfigSource envConfigSource
118 {
119 get { return m_EnvConfigSource; }
120 }
121
115 protected List<IClientNetworkServer> m_clientServers = new List<IClientNetworkServer>(); 122 protected List<IClientNetworkServer> m_clientServers = new List<IClientNetworkServer>();
116 123
117 public uint HttpServerPort 124 public uint HttpServerPort
@@ -146,7 +153,7 @@ namespace OpenSim
146 protected virtual void LoadConfigSettings(IConfigSource configSource) 153 protected virtual void LoadConfigSettings(IConfigSource configSource)
147 { 154 {
148 m_configLoader = new ConfigurationLoader(); 155 m_configLoader = new ConfigurationLoader();
149 m_config = m_configLoader.LoadConfigSettings(configSource, out m_configSettings, out m_networkServersInfo); 156 m_config = m_configLoader.LoadConfigSettings(configSource, envConfigSource, out m_configSettings, out m_networkServersInfo);
150 ReadExtraConfigSettings(); 157 ReadExtraConfigSettings();
151 } 158 }
152 159