aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ConfigSettings.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/ConfigSettings.cs146
1 files changed, 6 insertions, 140 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs
index 32415e0..002a371 100644
--- a/OpenSim/Framework/ConfigSettings.cs
+++ b/OpenSim/Framework/ConfigSettings.cs
@@ -29,146 +29,12 @@ namespace OpenSim.Framework
29{ 29{
30 public class ConfigSettings 30 public class ConfigSettings
31 { 31 {
32 private string m_physicsEngine; 32 public string PhysicsEngine { get; set; }
33 public string MeshEngineName { get; set; }
34 public string StorageDll { get; set; }
35 public string ClientstackDll { get; set; }
36 public string LibrariesXMLFile { get; set; }
33 37
34 public string PhysicsEngine
35 {
36 get { return m_physicsEngine; }
37 set { m_physicsEngine = value; }
38 }
39 private string m_meshEngineName;
40
41 public string MeshEngineName
42 {
43 get { return m_meshEngineName; }
44 set { m_meshEngineName = value; }
45 }
46
47 private bool m_standalone;
48
49 public bool Standalone
50 {
51 get { return m_standalone; }
52 set { m_standalone = value; }
53 }
54
55 private bool m_see_into_region_from_neighbor;
56
57 public bool See_into_region_from_neighbor
58 {
59 get { return m_see_into_region_from_neighbor; }
60 set { m_see_into_region_from_neighbor = value; }
61 }
62
63 private string m_storageDll;
64
65 public string StorageDll
66 {
67 get { return m_storageDll; }
68 set { m_storageDll = value; }
69 }
70
71 private string m_clientstackDll;
72
73 public string ClientstackDll
74 {
75 get { return m_clientstackDll; }
76 set { m_clientstackDll = value; }
77 }
78
79 private bool m_physicalPrim;
80
81 public bool PhysicalPrim
82 {
83 get { return m_physicalPrim; }
84 set { m_physicalPrim = value; }
85 }
86
87 private bool m_standaloneAuthenticate = false;
88
89 public bool StandaloneAuthenticate
90 {
91 get { return m_standaloneAuthenticate; }
92 set { m_standaloneAuthenticate = value; }
93 }
94
95 private string m_standaloneWelcomeMessage = null;
96
97 public string StandaloneWelcomeMessage
98 {
99 get { return m_standaloneWelcomeMessage; }
100 set { m_standaloneWelcomeMessage = value; }
101 }
102
103 private string m_standaloneInventoryPlugin;
104
105 public string StandaloneInventoryPlugin
106 {
107 get { return m_standaloneInventoryPlugin; }
108 set { m_standaloneInventoryPlugin = value; }
109 }
110
111 private string m_standaloneUserPlugin;
112
113 public string StandaloneUserPlugin
114 {
115 get { return m_standaloneUserPlugin; }
116 set { m_standaloneUserPlugin = value; }
117 }
118
119 private string m_standaloneInventorySource;
120
121 public string StandaloneInventorySource
122 {
123 get { return m_standaloneInventorySource; }
124 set { m_standaloneInventorySource = value; }
125 }
126
127 private string m_standaloneUserSource;
128
129 public string StandaloneUserSource
130 {
131 get { return m_standaloneUserSource; }
132 set { m_standaloneUserSource = value; }
133 }
134
135 protected string m_storageConnectionString;
136
137 public string StorageConnectionString
138 {
139 get { return m_storageConnectionString; }
140 set { m_storageConnectionString = value; }
141 }
142
143 protected string m_estateConnectionString;
144
145 public string EstateConnectionString
146 {
147 get { return m_estateConnectionString; }
148 set { m_estateConnectionString = value; }
149 }
150
151 protected string m_librariesXMLFile;
152 public string LibrariesXMLFile
153 {
154 get
155 {
156 return m_librariesXMLFile;
157 }
158 set
159 {
160 m_librariesXMLFile = value;
161 }
162 }
163
164 public const uint DefaultAssetServerHttpPort = 8003;
165 public const uint DefaultRegionHttpPort = 9000; 38 public const uint DefaultRegionHttpPort = 9000;
166 public static uint DefaultRegionRemotingPort = 8895; // This is actually assigned to, but then again, the remoting is obsolete, right?
167 public const uint DefaultUserServerHttpPort = 8002;
168 public const bool DefaultUserServerHttpSSL = false;
169 public const uint DefaultMessageServerHttpPort = 8006;
170 public const bool DefaultMessageServerHttpSSL = false;
171 public const uint DefaultGridServerHttpPort = 8003;
172 public const uint DefaultInventoryServerHttpPort = 8003;
173 } 39 }
174} 40} \ No newline at end of file