diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs b/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs index ed31c45..b47d014 100644 --- a/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs +++ b/OpenSim/Framework/Communications/Capabilities/CapsHandlers.cs | |||
@@ -28,6 +28,7 @@ | |||
28 | using System.Collections; | 28 | using System.Collections; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using OpenSim.Framework.Servers; | 30 | using OpenSim.Framework.Servers; |
31 | using OpenSim.Framework.Servers.Interfaces; | ||
31 | 32 | ||
32 | namespace OpenSim.Framework.Communications.Capabilities | 33 | namespace OpenSim.Framework.Communications.Capabilities |
33 | { | 34 | { |
@@ -39,7 +40,7 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
39 | public class CapsHandlers | 40 | public class CapsHandlers |
40 | { | 41 | { |
41 | private Dictionary <string, IRequestHandler> m_capsHandlers = new Dictionary<string, IRequestHandler>(); | 42 | private Dictionary <string, IRequestHandler> m_capsHandlers = new Dictionary<string, IRequestHandler>(); |
42 | private BaseHttpServer m_httpListener; | 43 | private IHttpServer m_httpListener; |
43 | private string m_httpListenerHostName; | 44 | private string m_httpListenerHostName; |
44 | private uint m_httpListenerPort; | 45 | private uint m_httpListenerPort; |
45 | private bool m_useSSL = false; | 46 | private bool m_useSSL = false; |
@@ -67,7 +68,7 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
67 | /// <param name="httpListenerHostname">host name of the HTTP | 68 | /// <param name="httpListenerHostname">host name of the HTTP |
68 | /// server</param> | 69 | /// server</param> |
69 | /// <param name="httpListenerPort">HTTP port</param> | 70 | /// <param name="httpListenerPort">HTTP port</param> |
70 | public CapsHandlers(BaseHttpServer httpListener, string httpListenerHostname, uint httpListenerPort, bool https) | 71 | public CapsHandlers(IHttpServer httpListener, string httpListenerHostname, uint httpListenerPort, bool https) |
71 | { | 72 | { |
72 | m_httpListener = httpListener; | 73 | m_httpListener = httpListener; |
73 | m_httpListenerHostName = httpListenerHostname; | 74 | m_httpListenerHostName = httpListenerHostname; |