aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/DefaultSettings.cs
diff options
context:
space:
mode:
authorlbsa712009-04-17 05:52:46 +0000
committerlbsa712009-04-17 05:52:46 +0000
commitbbe1e196963fe8609a1070793b8439c293261d24 (patch)
tree32102a5e67d7e007d5efe473aef3d331f3697726 /OpenSim/Framework/DefaultSettings.cs
parent* Added some debug info if MXP is enabled. (diff)
downloadopensim-SC_OLD-bbe1e196963fe8609a1070793b8439c293261d24.zip
opensim-SC_OLD-bbe1e196963fe8609a1070793b8439c293261d24.tar.gz
opensim-SC_OLD-bbe1e196963fe8609a1070793b8439c293261d24.tar.bz2
opensim-SC_OLD-bbe1e196963fe8609a1070793b8439c293261d24.tar.xz
* Some more work on refactoring configs;
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/DefaultSettings.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Framework/DefaultSettings.cs b/OpenSim/Framework/DefaultSettings.cs
new file mode 100644
index 0000000..8277914
--- /dev/null
+++ b/OpenSim/Framework/DefaultSettings.cs
@@ -0,0 +1,19 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Framework
6{
7 public static class DefaultSettings
8 {
9 public const uint DefaultAssetServerHttpPort = 8003;
10 public const uint DefaultRegionHttpPort = 9000;
11 public static uint DefaultRegionRemotingPort = 8895; // This is actually assigned to, but then again, the remoting is obsolete, right?
12 public const uint DefaultUserServerHttpPort = 8002;
13 public const bool DefaultUserServerHttpSSL = false;
14 public const uint DefaultMessageServerHttpPort = 8006;
15 public const bool DefaultMessageServerHttpSSL = false;
16 public const uint DefaultGridServerHttpPort = 8001;
17 public const uint DefaultInventoryServerHttpPort = 8004;
18 }
19}