From 7dcaa409b34288a5743483a53a8f4e87994edda8 Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Fri, 23 May 2008 01:38:20 +0000 Subject: Thank you kindly, Melanie, for a patch which: Previously, upload charging was possible only for UPD uploads. This is because UDP uploads are charged by the viewer, while in CAPS, this was changed to be server side, so hackers couldn't avoid paying the upload charge. This patch adds a method to allow implementation of this serverside charge. --- OpenSim/Region/Environment/Interfaces/IMoneyModule.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'OpenSim/Region/Environment/Interfaces') diff --git a/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs b/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs index de39d0f..eae6702 100644 --- a/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs +++ b/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs @@ -36,6 +36,7 @@ namespace OpenSim.Region.Environment.Interfaces { bool ObjectGiveMoney(LLUUID objectID, LLUUID fromID, LLUUID toID, int amount); + void ApplyUploadCharge(LLUUID agentID); event ObjectPaid OnObjectPaid; } -- cgit v1.1