From 63c137820b44e9d1e248ba32ccd6df5110a2bdb9 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Thu, 24 Nov 2011 21:27:35 +0000 Subject: Stop passing a request handler to the initial caps.RegisterHandler in EventQueueGetModule since this is immediatley replaced by a poll server handler. This allows us to comment out a bunch of code and simplify the codebase and readability. --- OpenSim/Capabilities/Caps.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'OpenSim/Capabilities/Caps.cs') diff --git a/OpenSim/Capabilities/Caps.cs b/OpenSim/Capabilities/Caps.cs index 56ccfd6..bc6f6f9 100644 --- a/OpenSim/Capabilities/Caps.cs +++ b/OpenSim/Capabilities/Caps.cs @@ -98,14 +98,17 @@ namespace OpenSim.Framework.Capabilities { get { return m_httpListener.UseSSL; } } + public string SSLCommonName { get { return m_httpListener.SSLCommonName; } } + public CapsHandlers CapsHandlers { get { return m_capsHandlers; } } + public Dictionary ExternalCapsHandlers { get { return m_externalCapsHandlers; } @@ -157,11 +160,7 @@ namespace OpenSim.Framework.Capabilities /// /// Remove all CAPS service handlers. - /// /// - /// - /// - /// public void DeregisterHandlers() { if (m_capsHandlers != null) -- cgit v1.1