aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Client
diff options
context:
space:
mode:
authorMelanie Thielker2009-03-29 05:42:27 +0000
committerMelanie Thielker2009-03-29 05:42:27 +0000
commitc483206fd7ecd67ac4fc8c4e4b71f65dfd3de6c4 (patch)
tree74474e6dd9b3ed66c23c1de8af0283d3fbc0e896 /OpenSim/Framework/Client
parentFinish the offline IM module (still needs a server). Add rudimentary (diff)
downloadopensim-SC_OLD-c483206fd7ecd67ac4fc8c4e4b71f65dfd3de6c4.zip
opensim-SC_OLD-c483206fd7ecd67ac4fc8c4e4b71f65dfd3de6c4.tar.gz
opensim-SC_OLD-c483206fd7ecd67ac4fc8c4e4b71f65dfd3de6c4.tar.bz2
opensim-SC_OLD-c483206fd7ecd67ac4fc8c4e4b71f65dfd3de6c4.tar.xz
Change the client API to use GridInstantMessage for the "last mile" of IM
sending. With this change, all methods that handle IM now use GridInstantMessage rather than individual parameters.
Diffstat (limited to 'OpenSim/Framework/Client')
-rw-r--r--OpenSim/Framework/Client/IClientIM.cs8
1 files changed, 1 insertions, 7 deletions
diff --git a/OpenSim/Framework/Client/IClientIM.cs b/OpenSim/Framework/Client/IClientIM.cs
index 04c6d6c..81b1d9e 100644
--- a/OpenSim/Framework/Client/IClientIM.cs
+++ b/OpenSim/Framework/Client/IClientIM.cs
@@ -61,13 +61,7 @@ namespace OpenSim.Framework.Client
61 61
62 public interface IClientIM 62 public interface IClientIM
63 { 63 {
64 void SendInstantMessage(UUID fromAgent, string message, UUID toAgent, 64 void SendInstantMessage(GridInstantMessage im);
65 string fromName, byte dialog, uint timeStamp);
66
67 void SendInstantMessage(UUID fromAgent, string message, UUID toAgent,
68 string fromName, byte dialog, uint timeStamp,
69 UUID transactionID, bool fromGroup,
70 byte[] binaryBucket);
71 65
72 event ImprovedInstantMessage OnInstantMessage; 66 event ImprovedInstantMessage OnInstantMessage;
73 } 67 }