a few changes

This commit is contained in:
UbitUmarov
2020-12-17 03:35:37 +00:00
parent 2a1e518495
commit b514bac6c2
8 changed files with 47 additions and 20 deletions

View File

@@ -513,6 +513,17 @@ namespace OpenSim.Framework
}
}
public string RegionHostPortSpaceName
{
get
{
string ret = (Flags & URIFlags.HasHost) != 0 ? (Host + ":" + Port + "/ ") : ""; // space needed for compatibility
if ((Flags & URIFlags.HasRegionName) != 0)
ret += RegionName;
return ret;
}
}
// this needs to be set before get
public bool IsLocalGrid
{