aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-09 01:16:42 +0000
committerMelanie Thielker2008-11-09 01:16:42 +0000
commitbdf9add8d1191b08bdaa9706484ac5da1f91af52 (patch)
treeae0a9c0ffb4dabd78a7286a73423a2c6dc4e0e2b /OpenSim/Framework
parentMantis#2591. Thank you kindly, Ruud Lathrop for a patch that: (diff)
downloadopensim-SC_OLD-bdf9add8d1191b08bdaa9706484ac5da1f91af52.zip
opensim-SC_OLD-bdf9add8d1191b08bdaa9706484ac5da1f91af52.tar.gz
opensim-SC_OLD-bdf9add8d1191b08bdaa9706484ac5da1f91af52.tar.bz2
opensim-SC_OLD-bdf9add8d1191b08bdaa9706484ac5da1f91af52.tar.xz
Reintroduce transactionID to the parameter list for SendInstantMessage.
It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Client/IClientIM.cs4
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
2 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Framework/Client/IClientIM.cs b/OpenSim/Framework/Client/IClientIM.cs
index a3498c2..1d55d10 100644
--- a/OpenSim/Framework/Client/IClientIM.cs
+++ b/OpenSim/Framework/Client/IClientIM.cs
@@ -39,7 +39,9 @@ namespace OpenSim.Framework.Client
39 39
40 void SendInstantMessage(UUID fromAgent, string message, UUID toAgent, 40 void SendInstantMessage(UUID fromAgent, string message, UUID toAgent,
41 string fromName, byte dialog, uint timeStamp, 41 string fromName, byte dialog, uint timeStamp,
42 bool fromGroup, byte[] binaryBucket); 42 UUID transactionID, bool fromGroup,
43 byte[] binaryBucket);
44
43 event ImprovedInstantMessage OnInstantMessage; 45 event ImprovedInstantMessage OnInstantMessage;
44 } 46 }
45} 47}
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 061676e..7a3931f 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -741,7 +741,7 @@ namespace OpenSim.Framework
741 uint timeStamp); 741 uint timeStamp);
742 742
743 void SendInstantMessage(UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog, 743 void SendInstantMessage(UUID fromAgent, string message, UUID toAgent, string fromName, byte dialog,
744 uint timeStamp, bool fromGroup, byte[] binaryBucket); 744 uint timeStamp, UUID transactionID, bool fromGroup, byte[] binaryBucket);
745 745
746 void SendGenericMessage(string method, List<string> message); 746 void SendGenericMessage(string method, List<string> message);
747 747
@@ -1027,4 +1027,4 @@ namespace OpenSim.Framework
1027 1027
1028 void KillEndDone(); 1028 void KillEndDone();
1029 } 1029 }
1030} \ No newline at end of file 1030}