mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
The new secure inventory server mode (in r5590) can now be disabled from OpenSim.ini. Default is to use the new mode.
This commit is contained in:
@@ -42,6 +42,7 @@ namespace OpenSim.Framework
|
||||
public string GridURL = String.Empty;
|
||||
public uint HttpListenerPort = DefaultHttpListenerPort;
|
||||
public string InventoryURL = String.Empty;
|
||||
public bool secureInventoryServer = false;
|
||||
public bool isSandbox;
|
||||
private uint? m_defaultHomeLocX;
|
||||
private uint? m_defaultHomeLocY;
|
||||
@@ -93,6 +94,7 @@ namespace OpenSim.Framework
|
||||
InventoryURL = config.Configs["Network"].GetString("inventory_server_url",
|
||||
"http://127.0.0.1:" +
|
||||
InventoryConfig.DefaultHttpPort.ToString());
|
||||
secureInventoryServer = config.Configs["Network"].GetBoolean("secure_inventory_server", true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user