aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientFileTransfer.cs
diff options
context:
space:
mode:
authorMW2008-12-15 21:46:57 +0000
committerMW2008-12-15 21:46:57 +0000
commit1110ee877ff0cdd17098b5035f147542ccd5ca87 (patch)
treee782f46dc21907f8cbdfb419c91518e6ab57c5cf /OpenSim/Framework/IClientFileTransfer.cs
parentAttempt at restoring inventory access after TPs/crossings. RemoveClient in Sc... (diff)
downloadopensim-SC_OLD-1110ee877ff0cdd17098b5035f147542ccd5ca87.zip
opensim-SC_OLD-1110ee877ff0cdd17098b5035f147542ccd5ca87.tar.gz
opensim-SC_OLD-1110ee877ff0cdd17098b5035f147542ccd5ca87.tar.bz2
opensim-SC_OLD-1110ee877ff0cdd17098b5035f147542ccd5ca87.tar.xz
More work on moving Xfer file transfer handling code to the Client stack from the various region modules that it is currently in.
Still not enabled yet.
Diffstat (limited to 'OpenSim/Framework/IClientFileTransfer.cs')
-rw-r--r--OpenSim/Framework/IClientFileTransfer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientFileTransfer.cs b/OpenSim/Framework/IClientFileTransfer.cs
index 832164e..ac5fc2b 100644
--- a/OpenSim/Framework/IClientFileTransfer.cs
+++ b/OpenSim/Framework/IClientFileTransfer.cs
@@ -32,7 +32,7 @@ using OpenMetaverse;
32 32
33namespace OpenSim.Framework 33namespace OpenSim.Framework
34{ 34{
35 public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient); 35 public delegate void UploadComplete(string filename, UUID fileID, ulong transferID, byte[] fileData, IClientAPI remoteClient);
36 public delegate void UploadAborted(string filename, UUID fileID, ulong transferID, IClientAPI remoteClient); 36 public delegate void UploadAborted(string filename, UUID fileID, ulong transferID, IClientAPI remoteClient);
37 37
38 public interface IClientFileTransfer 38 public interface IClientFileTransfer