mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
Added ExternalName config on Gatekeeper.
This commit is contained in:
@@ -96,6 +96,12 @@ namespace OpenSim.Framework
|
||||
/// </summary>
|
||||
public UUID SessionID;
|
||||
|
||||
/// <summary>
|
||||
/// Hypergrid service token; generated by the user domain, consumed by the receiving grid.
|
||||
/// There is one such unique token for each grid visited.
|
||||
/// </summary>
|
||||
public string ServiceSessionID = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Position the Agent's Avatar starts in the region
|
||||
/// </summary>
|
||||
@@ -156,6 +162,7 @@ namespace OpenSim.Framework
|
||||
args["inventory_folder"] = OSD.FromUUID(InventoryFolder);
|
||||
args["secure_session_id"] = OSD.FromUUID(SecureSessionID);
|
||||
args["session_id"] = OSD.FromUUID(SessionID);
|
||||
args["service_session_id"] = OSD.FromString(ServiceSessionID);
|
||||
args["start_pos"] = OSD.FromString(startpos.ToString());
|
||||
args["appearance_serial"] = OSD.FromInteger(Appearance.Serial);
|
||||
|
||||
@@ -253,6 +260,8 @@ namespace OpenSim.Framework
|
||||
SecureSessionID = args["secure_session_id"].AsUUID();
|
||||
if (args["session_id"] != null)
|
||||
SessionID = args["session_id"].AsUUID();
|
||||
if (args["service_session_id"] != null)
|
||||
ServiceSessionID = args["service_session_id"].AsString();
|
||||
if (args["start_pos"] != null)
|
||||
Vector3.TryParse(args["start_pos"].AsString(), out startpos);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user