diff options
Diffstat (limited to 'OpenSim/Framework/NetworkServersInfo.cs')
-rw-r--r-- | OpenSim/Framework/NetworkServersInfo.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/NetworkServersInfo.cs b/OpenSim/Framework/NetworkServersInfo.cs index 399a365..43ec11e 100644 --- a/OpenSim/Framework/NetworkServersInfo.cs +++ b/OpenSim/Framework/NetworkServersInfo.cs | |||
@@ -42,6 +42,7 @@ namespace OpenSim.Framework | |||
42 | public string GridURL = String.Empty; | 42 | public string GridURL = String.Empty; |
43 | public uint HttpListenerPort = DefaultHttpListenerPort; | 43 | public uint HttpListenerPort = DefaultHttpListenerPort; |
44 | public string InventoryURL = String.Empty; | 44 | public string InventoryURL = String.Empty; |
45 | public bool secureInventoryServer = false; | ||
45 | public bool isSandbox; | 46 | public bool isSandbox; |
46 | private uint? m_defaultHomeLocX; | 47 | private uint? m_defaultHomeLocX; |
47 | private uint? m_defaultHomeLocY; | 48 | private uint? m_defaultHomeLocY; |
@@ -93,6 +94,7 @@ namespace OpenSim.Framework | |||
93 | InventoryURL = config.Configs["Network"].GetString("inventory_server_url", | 94 | InventoryURL = config.Configs["Network"].GetString("inventory_server_url", |
94 | "http://127.0.0.1:" + | 95 | "http://127.0.0.1:" + |
95 | InventoryConfig.DefaultHttpPort.ToString()); | 96 | InventoryConfig.DefaultHttpPort.ToString()); |
97 | secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true); | ||
96 | } | 98 | } |
97 | } | 99 | } |
98 | } \ No newline at end of file | 100 | } |