aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/MessageServerConfig.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-01-15 02:09:55 +0000
committerAdam Frisby2008-01-15 02:09:55 +0000
commitb25f9f322cdbcde7fd8c043137bf07992e5ef318 (patch)
tree7c1a5115b2849dfe388b825dd271271d347f9574 /OpenSim/Framework/MessageServerConfig.cs
parentSet svn:eol-style. (diff)
downloadopensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.zip
opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.gz
opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.bz2
opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.xz
* Mother of all commits:
* Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
Diffstat (limited to 'OpenSim/Framework/MessageServerConfig.cs')
-rw-r--r--OpenSim/Framework/MessageServerConfig.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Framework/MessageServerConfig.cs b/OpenSim/Framework/MessageServerConfig.cs
index 5cef362..ccb6e7a 100644
--- a/OpenSim/Framework/MessageServerConfig.cs
+++ b/OpenSim/Framework/MessageServerConfig.cs
@@ -36,17 +36,17 @@ namespace OpenSim.Framework
36 /// </summary> 36 /// </summary>
37 public class MessageServerConfig 37 public class MessageServerConfig
38 { 38 {
39 public string DefaultStartupMsg = ""; 39 public string DefaultStartupMsg = String.Empty;
40 public string UserServerURL = ""; 40 public string UserServerURL = String.Empty;
41 public string UserSendKey = ""; 41 public string UserSendKey = String.Empty;
42 public string UserRecvKey = ""; 42 public string UserRecvKey = String.Empty;
43 43
44 public string GridServerURL = ""; 44 public string GridServerURL = String.Empty;
45 public string GridSendKey = ""; 45 public string GridSendKey = String.Empty;
46 public string GridRecvKey = ""; 46 public string GridRecvKey = String.Empty;
47 47
48 public string DatabaseProvider = ""; 48 public string DatabaseProvider = String.Empty;
49 public string GridCommsProvider = ""; 49 public string GridCommsProvider = String.Empty;
50 50
51 public static uint DefaultHttpPort = 8006; 51 public static uint DefaultHttpPort = 8006;
52 public static bool DefaultHttpSSL = false; 52 public static bool DefaultHttpSSL = false;