diff options
author | Charles Krinke | 2008-11-06 19:27:18 +0000 |
---|---|---|
committer | Charles Krinke | 2008-11-06 19:27:18 +0000 |
commit | 17e43dcc0f32cbdb030e20495dc179a6f8c3ef09 (patch) | |
tree | 07c7b9cb013eacbc22ccf40065883a92e3ba37c6 /OpenSim/Framework/Communications/Cache/AssetCache.cs | |
parent | Thank you kindly, Diva, for a patch that: (diff) | |
download | opensim-SC-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.zip opensim-SC-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.tar.gz opensim-SC-17e43dcc0f32cbdb030e20495dc179a6f8c3ef09.tar.bz2 opensim-SC-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.cs | 5 |
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> |