diff options
author | diva | 2009-05-17 01:38:43 +0000 |
---|---|---|
committer | diva | 2009-05-17 01:38:43 +0000 |
commit | aac8ca041170f6d1d648c6c5244dc3dfad428587 (patch) | |
tree | 190873d49a54f7462190331344aa308d8b6eb15f /OpenSim/Servers | |
parent | Send the owner name, not the client name on SendDialog. (diff) | |
download | opensim-SC_OLD-aac8ca041170f6d1d648c6c5244dc3dfad428587.zip opensim-SC_OLD-aac8ca041170f6d1d648c6c5244dc3dfad428587.tar.gz opensim-SC_OLD-aac8ca041170f6d1d648c6c5244dc3dfad428587.tar.bz2 opensim-SC_OLD-aac8ca041170f6d1d648c6c5244dc3dfad428587.tar.xz |
HG asset transfers starting to work -- GETs only for now.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs b/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs index 8888c87..b2b4cc2 100644 --- a/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs +++ b/OpenSim/Servers/Connectors/Asset/AssetServiceConnector.cs | |||
@@ -45,10 +45,15 @@ namespace OpenSim.Servers.Connectors | |||
45 | MethodBase.GetCurrentMethod().DeclaringType); | 45 | MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||
47 | private string m_ServerURI = String.Empty; | 47 | private string m_ServerURI = String.Empty; |
48 | private IImprovedAssetCache m_Cache = null; | 48 | private IImprovedAssetCache m_Cache = null; |
49 | |||
50 | public AssetServicesConnector() | ||
51 | { | ||
52 | } | ||
49 | 53 | ||
50 | public AssetServicesConnector() | 54 | public AssetServicesConnector(string serverURI) |
51 | { | 55 | { |
56 | m_ServerURI = serverURI; | ||
52 | } | 57 | } |
53 | 58 | ||
54 | public AssetServicesConnector(IConfigSource source) | 59 | public AssetServicesConnector(IConfigSource source) |