aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientFileTransfer.cs3
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 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Text; 3using System.Text;
4using OpenMetaverse;
4 5
5namespace OpenSim.Framework 6namespace 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