mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
* Message Server Linkages (still not ready for use so don't start it yet)
This commit is contained in:
@@ -45,6 +45,7 @@ namespace OpenSim.Framework
|
||||
public string GridServerURL = String.Empty;
|
||||
public string GridSendKey = String.Empty;
|
||||
public string GridRecvKey = String.Empty;
|
||||
public string MessageServerIP = String.Empty;
|
||||
|
||||
public string DatabaseProvider = String.Empty;
|
||||
public string GridCommsProvider = String.Empty;
|
||||
@@ -92,6 +93,8 @@ namespace OpenSim.Framework
|
||||
"Http Listener port", DefaultHttpPort.ToString(), false);
|
||||
configMember.addConfigurationOption("http_ssl", ConfigurationOption.ConfigurationTypes.TYPE_BOOLEAN,
|
||||
"Use SSL? true/false", DefaultHttpSSL.ToString(), false);
|
||||
configMember.addConfigurationOption("published_ip", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||
"My Published IP Address", "127.0.0.1", false);
|
||||
|
||||
}
|
||||
|
||||
@@ -130,6 +133,9 @@ namespace OpenSim.Framework
|
||||
case "region_comms_provider":
|
||||
GridCommsProvider = (string)configuration_result;
|
||||
break;
|
||||
case "published_ip":
|
||||
MessageServerIP = (string)configuration_result;
|
||||
break;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user