aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Communications/XMPP/Stanza.cs6
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
2 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/XMPP/Stanza.cs b/OpenSim/Framework/Communications/XMPP/Stanza.cs
index 4c57114..ed6ef06 100644
--- a/OpenSim/Framework/Communications/XMPP/Stanza.cs
+++ b/OpenSim/Framework/Communications/XMPP/Stanza.cs
@@ -11,9 +11,9 @@ namespace OpenSim.Framework.Communications.XMPP
11 public string localName = String.Empty; 11 public string localName = String.Empty;
12 public JId to; 12 public JId to;
13 public JId from; 13 public JId from;
14 string id; 14 public string id;
15 string lang; 15 public string lang;
16 string nodeName; 16 public string nodeName;
17 17
18 public Stanza(XmlNode node, Object defaults, bool hasID) 18 public Stanza(XmlNode node, Object defaults, bool hasID)
19 { 19 {
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index e081e05..cd59fa0 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -424,6 +424,9 @@ namespace OpenSim.Framework
424 public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes); 424 public delegate void PacketStats(int inPackets, int outPackets, int unAckedBytes);
425 425
426 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description); 426 public delegate void MoneyTransferRequest(LLUUID sourceID, LLUUID destID, int amount, int transactionType, string description);
427
428 public delegate void ParcelBuy(LLUUID agentId, LLUUID groupId, bool final, bool groupOwned,
429 bool removeContribution, int parcelLocalID, int parcelArea, int parcelPrice, bool authenticated);
427 430
428 // We keep all this information for fraud purposes in the future. 431 // We keep all this information for fraud purposes in the future.
429 public delegate void MoneyBalanceRequest(IClientAPI remoteClient, LLUUID agentID, LLUUID sessionID, LLUUID TransactionID); 432 public delegate void MoneyBalanceRequest(IClientAPI remoteClient, LLUUID agentID, LLUUID sessionID, LLUUID TransactionID);
@@ -544,6 +547,7 @@ namespace OpenSim.Framework
544 547
545 event MoneyBalanceRequest OnMoneyBalanceRequest; 548 event MoneyBalanceRequest OnMoneyBalanceRequest;
546 event UpdateAvatarProperties OnUpdateAvatarProperties; 549 event UpdateAvatarProperties OnUpdateAvatarProperties;
550 event ParcelBuy OnParcelBuy;
547 551
548 552
549 553