mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
gridinfo and ossl
This commit is contained in:
@@ -331,6 +331,26 @@ namespace OpenSim.Framework
|
||||
}
|
||||
}
|
||||
|
||||
public string HGHomeURL
|
||||
{
|
||||
get
|
||||
{
|
||||
if (m_homeURL.URLType != UriHostNameType.Unknown && m_hasHGconfig)
|
||||
return m_homeURL.URL;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public string HGHomeURLNoEndSlash
|
||||
{
|
||||
get
|
||||
{
|
||||
if (m_homeURL.URLType != UriHostNameType.Unknown && m_hasHGconfig)
|
||||
return m_homeURL.URL.Substring(0, m_gateKeeperURL.URL.Length - 1);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// -2 dns failed
|
||||
// -1 if bad url
|
||||
// 0 if not local
|
||||
|
||||
Reference in New Issue
Block a user