diff options
Diffstat (limited to 'OpenSim/Framework/General')
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 5 | ||||
-rw-r--r-- | OpenSim/Framework/General/NullClientAPI.cs | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index 1af96e7..ff794f9 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -87,6 +87,9 @@ namespace OpenSim.Framework.Interfaces | |||
87 | public delegate void FetchInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID ownerID); | 87 | public delegate void FetchInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID ownerID); |
88 | public delegate void RequestTaskInventory(IClientAPI remoteClient, uint localID); | 88 | public delegate void RequestTaskInventory(IClientAPI remoteClient, uint localID); |
89 | 89 | ||
90 | public delegate void UDPAssetUploadRequest(IClientAPI remoteClient, LLUUID assetID, LLUUID transaction, sbyte type, byte[] data); | ||
91 | public delegate void XferReceive(IClientAPI remoteClient, ulong xferID, uint packetID, byte[] data); | ||
92 | |||
90 | public interface IClientAPI | 93 | public interface IClientAPI |
91 | { | 94 | { |
92 | event ImprovedInstantMessage OnInstantMessage; | 95 | event ImprovedInstantMessage OnInstantMessage; |
@@ -135,6 +138,8 @@ namespace OpenSim.Framework.Interfaces | |||
135 | event FetchInventoryDescendents OnFetchInventoryDescendents; | 138 | event FetchInventoryDescendents OnFetchInventoryDescendents; |
136 | event FetchInventory OnFetchInventory; | 139 | event FetchInventory OnFetchInventory; |
137 | event RequestTaskInventory OnRequestTaskInventory; | 140 | event RequestTaskInventory OnRequestTaskInventory; |
141 | event UDPAssetUploadRequest OnAssetUploadRequest; | ||
142 | event XferReceive OnXferReceive; | ||
138 | 143 | ||
139 | event UUIDNameRequest OnNameFromUUIDRequest; | 144 | event UUIDNameRequest OnNameFromUUIDRequest; |
140 | 145 | ||
diff --git a/OpenSim/Framework/General/NullClientAPI.cs b/OpenSim/Framework/General/NullClientAPI.cs index 864ea60..876c9b3 100644 --- a/OpenSim/Framework/General/NullClientAPI.cs +++ b/OpenSim/Framework/General/NullClientAPI.cs | |||
@@ -57,6 +57,8 @@ namespace OpenSim.Framework | |||
57 | public event FetchInventoryDescendents OnFetchInventoryDescendents; | 57 | public event FetchInventoryDescendents OnFetchInventoryDescendents; |
58 | public event FetchInventory OnFetchInventory; | 58 | public event FetchInventory OnFetchInventory; |
59 | public event RequestTaskInventory OnRequestTaskInventory; | 59 | public event RequestTaskInventory OnRequestTaskInventory; |
60 | public event UDPAssetUploadRequest OnAssetUploadRequest; | ||
61 | public event XferReceive OnXferReceive; | ||
60 | 62 | ||
61 | public event UUIDNameRequest OnNameFromUUIDRequest; | 63 | public event UUIDNameRequest OnNameFromUUIDRequest; |
62 | 64 | ||