diff options
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 1bf8c05..dfe0fdc 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -104,6 +104,13 @@ namespace OpenSim.Framework.Communications | |||
104 | /// </summary> | 104 | /// </summary> |
105 | protected IUserServiceAdmin m_userServiceAdmin; | 105 | protected IUserServiceAdmin m_userServiceAdmin; |
106 | 106 | ||
107 | |||
108 | public BaseHttpServer HttpServer | ||
109 | { | ||
110 | get { return m_httpServer; } | ||
111 | } | ||
112 | protected BaseHttpServer m_httpServer; | ||
113 | |||
107 | /// <summary> | 114 | /// <summary> |
108 | /// Constructor | 115 | /// Constructor |
109 | /// </summary> | 116 | /// </summary> |
@@ -117,6 +124,7 @@ namespace OpenSim.Framework.Communications | |||
117 | m_networkServersInfo = serversInfo; | 124 | m_networkServersInfo = serversInfo; |
118 | m_assetCache = assetCache; | 125 | m_assetCache = assetCache; |
119 | m_userProfileCacheService = new UserProfileCacheService(this, libraryRootFolder); | 126 | m_userProfileCacheService = new UserProfileCacheService(this, libraryRootFolder); |
127 | m_httpServer = httpServer; | ||
120 | // m_transactionsManager = new AgentAssetTransactionsManager(this, dumpAssetsToFile); | 128 | // m_transactionsManager = new AgentAssetTransactionsManager(this, dumpAssetsToFile); |
121 | } | 129 | } |
122 | 130 | ||