aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/AssetCache.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-11-06 19:27:18 +0000
committerCharles Krinke2008-11-06 19:27:18 +0000
commit17e43dcc0f32cbdb030e20495dc179a6f8c3ef09 (patch)
tree07c7b9cb013eacbc22ccf40065883a92e3ba37c6 /OpenSim/Framework/Communications/Cache/AssetCache.cs
parentThank you kindly, Diva, for a patch that: (diff)
downloadopensim-SC_OLD-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.zip
opensim-SC_OLD-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.tar.gz
opensim-SC_OLD-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.tar.bz2
opensim-SC_OLD-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.tar.xz
Mantis#2566. Thank you kindly, Diva for a patch that:
This patch introduces a couple of read-only properties, so that I can grab the asset server plugin from a region module. This is needed to set up an http service for accessing standalone assets remotely.
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/AssetCache.cs')
-rw-r--r--OpenSim/Framework/Communications/Cache/AssetCache.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs
index 5c8fddc..dfdb0e7 100644
--- a/OpenSim/Framework/Communications/Cache/AssetCache.cs
+++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs
@@ -85,6 +85,11 @@ namespace OpenSim.Framework.Communications.Cache
85 /// </summary> 85 /// </summary>
86 private readonly IAssetServer m_assetServer; 86 private readonly IAssetServer m_assetServer;
87 87
88 public IAssetServer AssetServer
89 {
90 get { return m_assetServer; }
91 }
92
88 /// <summary> 93 /// <summary>
89 /// Report statistical data. 94 /// Report statistical data.
90 /// </summary> 95 /// </summary>