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/Client | |
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/Client')
-rw-r--r-- | OpenSim/Framework/Client/IClientIM.cs | 4 |
1 files changed, 3 insertions, 1 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 | } |