mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
HG: more adjustments for making HG Simian work. Added server_uri as new key on get_agent_home in UAS.
This commit is contained in:
@@ -62,7 +62,7 @@ namespace OpenSim.Services.Connectors
|
||||
else
|
||||
{
|
||||
serverURI = serverURI + "xxx";
|
||||
m_ServerURI = serverURI.Replace("?" + uri.Query, "");
|
||||
m_ServerURI = serverURI.Replace(uri.Query, "");
|
||||
m_ServerURI = m_ServerURI.TrimEnd('/') + "/helo/";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -334,6 +334,9 @@ namespace OpenSim.Services.Connectors.Hypergrid
|
||||
UInt32.TryParse((string)hash["http_port"], out p);
|
||||
region.HttpPort = p;
|
||||
}
|
||||
if (hash.ContainsKey("server_uri") && hash["server_uri"] != null)
|
||||
region.ServerURI = (string)hash["server_uri"];
|
||||
|
||||
if (hash["internal_port"] != null)
|
||||
{
|
||||
int p = 0;
|
||||
|
||||
Reference in New Issue
Block a user