aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientFileTransfer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientFileTransfer.cs')
-rw-r--r--OpenSim/Framework/IClientFileTransfer.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/OpenSim/Framework/IClientFileTransfer.cs b/OpenSim/Framework/IClientFileTransfer.cs
index ec8e623..fc9ec79 100644
--- a/OpenSim/Framework/IClientFileTransfer.cs
+++ b/OpenSim/Framework/IClientFileTransfer.cs
@@ -1,15 +1,15 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenMetaverse; 4using OpenMetaverse;
5 5
6namespace OpenSim.Framework 6namespace OpenSim.Framework
7{ 7{
8 public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient); 8 public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient);
9 public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient); 9 public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient);
10 10
11 public interface IClientFileTransfer 11 public interface IClientFileTransfer
12 { 12 {
13 bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback); 13 bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback);
14 } 14 }
15} 15}