aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/ClientStackManager.cs
diff options
context:
space:
mode:
authorSean Dague2009-02-09 21:47:55 +0000
committerSean Dague2009-02-09 21:47:55 +0000
commit8088802c218d7eb4a47018b5b3bb70e7463a03b1 (patch)
treeac22b97c3dce09a91bae18b5840f8654813dcfc8 /OpenSim/Region/ClientStack/ClientStackManager.cs
parentThank you kindly, TLaukkan (Tommil) for a patch that: (diff)
downloadopensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.zip
opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.tar.gz
opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.tar.bz2
opensim-SC_OLD-8088802c218d7eb4a47018b5b3bb70e7463a03b1.tar.xz
From Alan Webb <awebb@linux.vnet.ibm.com>
These changes replace all direct references to the AssetCache with IAssetCache. There is no change to functionality. Everything works as before. This is laying the groundwork for making it possible to register alternative asset caching mechanisms without disrupting other parts of OpenSim or their dependencies upon AssetCache functionality.
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientStackManager.cs')
-rw-r--r--OpenSim/Region/ClientStack/ClientStackManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/ClientStackManager.cs b/OpenSim/Region/ClientStack/ClientStackManager.cs
index 6bc4c4b..6cad7c9 100644
--- a/OpenSim/Region/ClientStack/ClientStackManager.cs
+++ b/OpenSim/Region/ClientStack/ClientStackManager.cs
@@ -89,7 +89,7 @@ namespace OpenSim.Region.Environment
89 /// <returns></returns> 89 /// <returns></returns>
90 public IClientNetworkServer CreateServer( 90 public IClientNetworkServer CreateServer(
91 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, 91 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port,
92 AssetCache assetCache, AgentCircuitManager authenticateClass) 92 IAssetCache assetCache, AgentCircuitManager authenticateClass)
93 { 93 {
94 return CreateServer( 94 return CreateServer(
95 _listenIP, ref port, proxyPortOffset, allow_alternate_port, null, assetCache, authenticateClass); 95 _listenIP, ref port, proxyPortOffset, allow_alternate_port, null, assetCache, authenticateClass);
@@ -110,7 +110,7 @@ namespace OpenSim.Region.Environment
110 /// <returns></returns> 110 /// <returns></returns>
111 public IClientNetworkServer CreateServer( 111 public IClientNetworkServer CreateServer(
112 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, IConfigSource configSource, 112 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, IConfigSource configSource,
113 AssetCache assetCache, AgentCircuitManager authenticateClass) 113 IAssetCache assetCache, AgentCircuitManager authenticateClass)
114 { 114 {
115 if (plugin != null) 115 if (plugin != null)
116 { 116 {