diff options
author | MW | 2008-12-12 22:20:13 +0000 |
---|---|---|
committer | MW | 2008-12-12 22:20:13 +0000 |
commit | e0765fa6c8fbcb385802d194a7bf08b4e686553a (patch) | |
tree | 36e9e8899b1b6d512c064e76798267fed654fa95 /OpenSim/Framework | |
parent | * minor: Downgrade friends module 'client logging out' notice from error to d... (diff) | |
download | opensim-SC-e0765fa6c8fbcb385802d194a7bf08b4e686553a.zip opensim-SC-e0765fa6c8fbcb385802d194a7bf08b4e686553a.tar.gz opensim-SC-e0765fa6c8fbcb385802d194a7bf08b4e686553a.tar.bz2 opensim-SC-e0765fa6c8fbcb385802d194a7bf08b4e686553a.tar.xz |
more work on moving FileTransfer code to the clientstack.
Although its still not enabled.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientFileTransfer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientFileTransfer.cs b/OpenSim/Framework/IClientFileTransfer.cs index 8cdf795..ec8e623 100644 --- a/OpenSim/Framework/IClientFileTransfer.cs +++ b/OpenSim/Framework/IClientFileTransfer.cs | |||
@@ -1,10 +1,11 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenMetaverse; | ||
4 | 5 | ||
5 | namespace OpenSim.Framework | 6 | namespace OpenSim.Framework |
6 | { | 7 | { |
7 | public delegate void UploadComplete(string filename, byte[] fileData, IClientAPI remoteClient); | 8 | public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient); |
8 | public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient); | 9 | public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient); |
9 | 10 | ||
10 | public interface IClientFileTransfer | 11 | public interface IClientFileTransfer |