From 8db69d2e02b13edb348a13a33c82eda3f7124636 Mon Sep 17 00:00:00 2001
From: UbitUmarov
Date: Tue, 6 Dec 2016 07:26:26 +0000
Subject: remove redundante check for ssl listener
---
OpenSim/Capabilities/Caps.cs | 2 +-
OpenSim/Capabilities/CapsHandlers.cs | 28 ++++++----------------------
2 files changed, 7 insertions(+), 23 deletions(-)
(limited to 'OpenSim/Capabilities')
diff --git a/OpenSim/Capabilities/Caps.cs b/OpenSim/Capabilities/Caps.cs
index 5e89c38..7ba65c9 100644
--- a/OpenSim/Capabilities/Caps.cs
+++ b/OpenSim/Capabilities/Caps.cs
@@ -136,7 +136,7 @@ namespace OpenSim.Framework.Capabilities
}
m_agentID = agent;
- m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort, (httpServer == null) ? false : httpServer.UseSSL);
+ m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort);
m_regionName = regionName;
m_capsActive.Reset();
}
diff --git a/OpenSim/Capabilities/CapsHandlers.cs b/OpenSim/Capabilities/CapsHandlers.cs
index 04cede1..6ec375b 100644
--- a/OpenSim/Capabilities/CapsHandlers.cs
+++ b/OpenSim/Capabilities/CapsHandlers.cs
@@ -53,31 +53,15 @@ namespace OpenSim.Framework.Capabilities
/// base HTTP server
/// host name of the HTTP server
/// HTTP port
- public CapsHandlers(BaseHttpServer httpListener, string httpListenerHostname, uint httpListenerPort)
- : this(httpListener,httpListenerHostname,httpListenerPort, false)
- {
- }
-
- ///
- /// CapsHandlers is a cap handler container but also takes
- /// care of adding and removing cap handlers to and from the
- /// supplied BaseHttpServer.
- ///
- /// base HTTP server
- /// host name of the HTTP
- /// server
- /// HTTP port
- public CapsHandlers(IHttpServer httpListener, string httpListenerHostname, uint httpListenerPort, bool https)
- {
+ public CapsHandlers(IHttpServer httpListener, string httpListenerHostname, uint httpListenerPort)
+ {
m_httpListener = httpListener;
m_httpListenerHostName = httpListenerHostname;
m_httpListenerPort = httpListenerPort;
- m_useSSL = https;
- if (httpListener != null && m_useSSL)
- {
- m_httpListenerHostName = httpListener.SSLCommonName;
- m_httpListenerPort = httpListener.SSLPort;
- }
+ if (httpListener.UseSSL)
+ m_useSSL = true;
+ else
+ m_useSSL = false;
}
///
--
cgit v1.1