diff options
Diffstat (limited to 'OpenSim/Framework/NetworkServersInfo.cs')
-rw-r--r-- | OpenSim/Framework/NetworkServersInfo.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/NetworkServersInfo.cs b/OpenSim/Framework/NetworkServersInfo.cs index 9f3014d..49b8ef9 100644 --- a/OpenSim/Framework/NetworkServersInfo.cs +++ b/OpenSim/Framework/NetworkServersInfo.cs | |||
@@ -53,6 +53,7 @@ namespace OpenSim.Framework | |||
53 | public string HttpSSLCN = ""; | 53 | public string HttpSSLCN = ""; |
54 | public uint httpSSLPort = 9001; | 54 | public uint httpSSLPort = 9001; |
55 | 55 | ||
56 | public string MessagingURL = String.Empty; | ||
56 | 57 | ||
57 | public NetworkServersInfo() | 58 | public NetworkServersInfo() |
58 | { | 59 | { |
@@ -102,6 +103,9 @@ namespace OpenSim.Framework | |||
102 | "http://127.0.0.1:" + | 103 | "http://127.0.0.1:" + |
103 | InventoryConfig.DefaultHttpPort.ToString()); | 104 | InventoryConfig.DefaultHttpPort.ToString()); |
104 | secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true); | 105 | secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true); |
106 | |||
107 | MessagingURL = config.Configs["Network"].GetString("messaging_server_url", | ||
108 | "http://127.0.0.1:" + MessageServerConfig.DefaultHttpPort); | ||
105 | } | 109 | } |
106 | } | 110 | } |
107 | } | 111 | } |