aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
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/Tests/Common/Mock/TestClient.cs
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 '')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index cb26366..fe93d6b 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -970,5 +970,22 @@ namespace OpenSim.Tests.Common.Mock
970 { 970 {
971 } 971 }
972 972
973 public void SendAgentDropGroup(UUID groupID)
974 {
975 }
976
977 public void SendAvatarNotesReply(UUID targetID, string text)
978 {
979 }
980
981 public void SendAvatarPicksReply(UUID targetID, Dictionary<UUID, string> picks)
982 {
983 }
984
985 public void SendAvatarClassifiedReply(UUID targetID, Dictionary<UUID, string> classifieds)
986 {
987 }
988
989
973 } 990 }
974} 991}