aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie Thielker2008-12-25 20:28:13 +0000
committerMelanie Thielker2008-12-25 20:28:13 +0000
commit23844a9073e28fb8c74424812603027586bdb4df (patch)
tree3267ff93ec895d352990ea6f783f1b4a62645670 /OpenSim/Framework
parentPlumb yet another groups packet (diff)
downloadopensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.zip
opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.tar.gz
opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.tar.bz2
opensim-SC_OLD-23844a9073e28fb8c74424812603027586bdb4df.tar.xz
Plumb the profile reply packets for picks, classifieds and notes
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 05e8f75..79311d5 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -1077,6 +1077,11 @@ namespace OpenSim.Framework
1077 void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name); 1077 void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name);
1078 void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price); 1078 void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price);
1079 1079
1080 void SendAgentDropGroup(UUID groupID);
1081 void SendAvatarNotesReply(UUID targetID, string text);
1082 void SendAvatarPicksReply(UUID targetID, Dictionary<UUID, string> picks);
1083 void SendAvatarClassifiedReply(UUID targetID, Dictionary<UUID, string> classifieds);
1084
1080 void KillEndDone(); 1085 void KillEndDone();
1081 1086
1082 bool AddGenericPacketHandler(string MethodName, GenericMessage handler); 1087 bool AddGenericPacketHandler(string MethodName, GenericMessage handler);