aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorUbitUmarov2018-11-02 02:21:34 +0000
committerUbitUmarov2018-11-02 02:21:34 +0000
commit0aff4a2914e0d6ae9f0411520950733b5282f8b2 (patch)
tree0a1efa183fc35fbb046d0c9e074a0bc77d4df9bc /OpenSim/Region
parentforgot about lsl secure urls service.. so lets try another way for now (manti... (diff)
downloadopensim-SC-0aff4a2914e0d6ae9f0411520950733b5282f8b2.zip
opensim-SC-0aff4a2914e0d6ae9f0411520950733b5282f8b2.tar.gz
opensim-SC-0aff4a2914e0d6ae9f0411520950733b5282f8b2.tar.bz2
opensim-SC-0aff4a2914e0d6ae9f0411520950733b5282f8b2.tar.xz
fix lsl http url pool service not beeing removed
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
index 31c317c..5e8cd8e 100644
--- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
@@ -492,13 +492,12 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
492 } 492 }
493 } 493 }
494 494
495
496 protected void RemoveUrl(UrlData data) 495 protected void RemoveUrl(UrlData data)
497 { 496 {
498 if (data.isSsl) 497 if (data.isSsl)
499 m_HttpsServer.RemoveHTTPHandler("", "/lslhttps/"+data.urlcode.ToString()+"/"); 498 m_HttpsServer.RemovePollServiceHTTPHandler("", "/lslhttps/"+data.urlcode.ToString()+"/");
500 else 499 else
501 m_HttpServer.RemoveHTTPHandler("", "/lslhttp/"+data.urlcode.ToString()+"/"); 500 m_HttpServer.RemovePollServiceHTTPHandler("", "/lslhttp/"+data.urlcode.ToString()+"/");
502 } 501 }
503 502
504 protected Hashtable NoEvents(UUID requestID, UUID sessionID) 503 protected Hashtable NoEvents(UUID requestID, UUID sessionID)