aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientFileTransfer.cs
diff options
context:
space:
mode:
authorMW2008-12-13 15:04:24 +0000
committerMW2008-12-13 15:04:24 +0000
commit40bbf886f207edd68de3a58f1f292bc613ad7cfa (patch)
treeda79681d23070f903afa6ca9b30b4c829b676bc2 /OpenSim/Framework/IClientFileTransfer.cs
parentAdd copyright headers. (diff)
downloadopensim-SC_OLD-40bbf886f207edd68de3a58f1f292bc613ad7cfa.zip
opensim-SC_OLD-40bbf886f207edd68de3a58f1f292bc613ad7cfa.tar.gz
opensim-SC_OLD-40bbf886f207edd68de3a58f1f292bc613ad7cfa.tar.bz2
opensim-SC_OLD-40bbf886f207edd68de3a58f1f292bc613ad7cfa.tar.xz
more work on moving FileTransfer code to the clientstack.
Still not enabled.
Diffstat (limited to 'OpenSim/Framework/IClientFileTransfer.cs')
-rw-r--r--OpenSim/Framework/IClientFileTransfer.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientFileTransfer.cs b/OpenSim/Framework/IClientFileTransfer.cs
index d033a0d..832164e 100644
--- a/OpenSim/Framework/IClientFileTransfer.cs
+++ b/OpenSim/Framework/IClientFileTransfer.cs
@@ -1,4 +1,4 @@
1/* 1/*
2 * Copyright (c) Contributors, http://opensimulator.org/ 2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders. 3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 * 4 *
@@ -33,10 +33,11 @@ using OpenMetaverse;
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, byte[] fileData, IClientAPI remoteClient);
36 public delegate void UploadAborted(string filename, ulong id, 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
39 { 39 {
40 bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback); 40 bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback);
41 bool RequestUpload(UUID fileID, UploadComplete uploadCompleteCallback, UploadAborted abortCallback);
41 } 42 }
42} 43}