From 40bbf886f207edd68de3a58f1f292bc613ad7cfa Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 13 Dec 2008 15:04:24 +0000 Subject: more work on moving FileTransfer code to the clientstack. Still not enabled. --- OpenSim/Framework/IClientFileTransfer.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework') 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 @@ -/* +/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * @@ -33,10 +33,11 @@ using OpenMetaverse; namespace OpenSim.Framework { public delegate void UploadComplete(string filename, UUID fileID, byte[] fileData, IClientAPI remoteClient); - public delegate void UploadAborted(string filename, ulong id, IClientAPI remoteClient); + public delegate void UploadAborted(string filename, UUID fileID, ulong transferID, IClientAPI remoteClient); public interface IClientFileTransfer { bool RequestUpload(string clientFileName, UploadComplete uploadCompleteCallback, UploadAborted abortCallback); + bool RequestUpload(UUID fileID, UploadComplete uploadCompleteCallback, UploadAborted abortCallback); } } -- cgit v1.1