diff options
author | Johan Berntsson | 2008-07-23 09:46:04 +0000 |
---|---|---|
committer | Johan Berntsson | 2008-07-23 09:46:04 +0000 |
commit | ce4bcb50655e69277eac64a6d3ab520d669e6b70 (patch) | |
tree | 55391a649d22a534260553dabf47791f4bc650b0 /OpenSim/Framework/NetworkServersInfo.cs | |
parent | Fix issue 1760. If the inventory item is not found, llSay() and throw an exce... (diff) | |
download | opensim-SC_OLD-ce4bcb50655e69277eac64a6d3ab520d669e6b70.zip opensim-SC_OLD-ce4bcb50655e69277eac64a6d3ab520d669e6b70.tar.gz opensim-SC_OLD-ce4bcb50655e69277eac64a6d3ab520d669e6b70.tar.bz2 opensim-SC_OLD-ce4bcb50655e69277eac64a6d3ab520d669e6b70.tar.xz |
The new secure inventory server mode (in r5590) can now be disabled from OpenSim.ini. Default is to use the new mode.
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 | } |