aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
diff options
context:
space:
mode:
authorBlueWall2012-05-23 15:07:03 -0400
committerBlueWall2012-05-23 15:08:39 -0400
commit682d4075e3fe7c52d4c29d00ba9dc0456b7322f3 (patch)
tree7d5950b3ab33f25ae742f7661136b55bc57654dc /OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
parentminor: Change [OBJECT COMMANDS MODULE] log strings to [REGION COMMANDS MODULE... (diff)
downloadopensim-SC_OLD-682d4075e3fe7c52d4c29d00ba9dc0456b7322f3.zip
opensim-SC_OLD-682d4075e3fe7c52d4c29d00ba9dc0456b7322f3.tar.gz
opensim-SC_OLD-682d4075e3fe7c52d4c29d00ba9dc0456b7322f3.tar.bz2
opensim-SC_OLD-682d4075e3fe7c52d4c29d00ba9dc0456b7322f3.tar.xz
Fix llGetSimulatorHostname to return configured hostname
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
index d58fc0f..d2cd163 100644
--- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
@@ -84,6 +84,10 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
84 private IHttpServer m_HttpsServer = null; 84 private IHttpServer m_HttpsServer = null;
85 85
86 private string m_ExternalHostNameForLSL = ""; 86 private string m_ExternalHostNameForLSL = "";
87 public string ExternalHostNameForLSL
88 {
89 get { return m_ExternalHostNameForLSL; }
90 }
87 91
88 public Type ReplaceableInterface 92 public Type ReplaceableInterface
89 { 93 {