diff options
author | Melanie Thielker | 2008-11-09 01:16:42 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-09 01:16:42 +0000 |
commit | bdf9add8d1191b08bdaa9706484ac5da1f91af52 (patch) | |
tree | ae0a9c0ffb4dabd78a7286a73423a2c6dc4e0e2b /OpenSim/Framework/IClientAPI.cs | |
parent | Mantis#2591. Thank you kindly, Ruud Lathrop for a patch that: (diff) | |
download | opensim-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/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 | } |