aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/DefaultSettings.cs
diff options
context:
space:
mode:
authorlbsa712009-04-17 15:09:37 +0000
committerlbsa712009-04-17 15:09:37 +0000
commita189da844a1ec48b321674f49a81c4e0a71c8b81 (patch)
treeeb55b24007c0f221a7d9f84bdbb12282d161c777 /OpenSim/Framework/DefaultSettings.cs
parent* remind me to never touch EstateSettings ever again. Ever. (diff)
downloadopensim-SC_OLD-a189da844a1ec48b321674f49a81c4e0a71c8b81.zip
opensim-SC_OLD-a189da844a1ec48b321674f49a81c4e0a71c8b81.tar.gz
opensim-SC_OLD-a189da844a1ec48b321674f49a81c4e0a71c8b81.tar.bz2
opensim-SC_OLD-a189da844a1ec48b321674f49a81c4e0a71c8b81.tar.xz
* Moved the DefaultConfig settings into already-existing ConfigSettings
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/DefaultSettings.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/OpenSim/Framework/DefaultSettings.cs b/OpenSim/Framework/DefaultSettings.cs
deleted file mode 100644
index 8277914..0000000
--- a/OpenSim/Framework/DefaultSettings.cs
+++ /dev/null
@@ -1,19 +0,0 @@
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}