diff options
author | lbsa71 | 2009-04-17 15:09:37 +0000 |
---|---|---|
committer | lbsa71 | 2009-04-17 15:09:37 +0000 |
commit | a189da844a1ec48b321674f49a81c4e0a71c8b81 (patch) | |
tree | eb55b24007c0f221a7d9f84bdbb12282d161c777 /OpenSim/Framework/ConfigSettings.cs | |
parent | * remind me to never touch EstateSettings ever again. Ever. (diff) | |
download | opensim-SC-a189da844a1ec48b321674f49a81c4e0a71c8b81.zip opensim-SC-a189da844a1ec48b321674f49a81c4e0a71c8b81.tar.gz opensim-SC-a189da844a1ec48b321674f49a81c4e0a71c8b81.tar.bz2 opensim-SC-a189da844a1ec48b321674f49a81c4e0a71c8b81.tar.xz |
* Moved the DefaultConfig settings into already-existing ConfigSettings
Diffstat (limited to 'OpenSim/Framework/ConfigSettings.cs')
-rw-r--r-- | OpenSim/Framework/ConfigSettings.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs index 5f5e16f..77b05c8 100644 --- a/OpenSim/Framework/ConfigSettings.cs +++ b/OpenSim/Framework/ConfigSettings.cs | |||
@@ -212,5 +212,15 @@ namespace OpenSim.Framework | |||
212 | m_assetSetsXMLFile = value; | 212 | m_assetSetsXMLFile = value; |
213 | } | 213 | } |
214 | } | 214 | } |
215 | |||
216 | public const uint DefaultAssetServerHttpPort = 8003; | ||
217 | public const uint DefaultRegionHttpPort = 9000; | ||
218 | public static uint DefaultRegionRemotingPort = 8895; // This is actually assigned to, but then again, the remoting is obsolete, right? | ||
219 | public const uint DefaultUserServerHttpPort = 8002; | ||
220 | public const bool DefaultUserServerHttpSSL = false; | ||
221 | public const uint DefaultMessageServerHttpPort = 8006; | ||
222 | public const bool DefaultMessageServerHttpSSL = false; | ||
223 | public const uint DefaultGridServerHttpPort = 8001; | ||
224 | public const uint DefaultInventoryServerHttpPort = 8004; | ||
215 | } | 225 | } |
216 | } | 226 | } |