diff options
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index db34d1b..e220e17 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -33,6 +33,7 @@ using OpenSim.Framework.Interfaces; | |||
33 | using OpenSim.Framework.Types; | 33 | using OpenSim.Framework.Types; |
34 | using OpenSim.Framework.Servers; | 34 | using OpenSim.Framework.Servers; |
35 | using OpenSim.Framework.Communications.Caches; | 35 | using OpenSim.Framework.Communications.Caches; |
36 | |||
36 | 37 | ||
37 | namespace OpenSim.Framework.Communications | 38 | namespace OpenSim.Framework.Communications |
38 | { | 39 | { |
@@ -44,11 +45,13 @@ namespace OpenSim.Framework.Communications | |||
44 | public IInventoryServices InventoryServer; | 45 | public IInventoryServices InventoryServer; |
45 | public IInterRegionCommunications InterRegion; | 46 | public IInterRegionCommunications InterRegion; |
46 | public UserProfileCache UserProfilesCache; | 47 | public UserProfileCache UserProfilesCache; |
48 | public AssetCache AssetCache; | ||
47 | 49 | ||
48 | public NetworkServersInfo ServersInfo; | 50 | public NetworkServersInfo ServersInfo; |
49 | public CommunicationsManager(NetworkServersInfo serversInfo, BaseHttpServer httpServer) | 51 | public CommunicationsManager(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache) |
50 | { | 52 | { |
51 | ServersInfo = serversInfo; | 53 | ServersInfo = serversInfo; |
54 | this.AssetCache = assetCache; | ||
52 | UserProfilesCache = new UserProfileCache(this); | 55 | UserProfilesCache = new UserProfileCache(this); |
53 | } | 56 | } |
54 | 57 | ||