From 4f6c4378dad0f4122bdab9270fd7aaf3c60beb39 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Sat, 28 Mar 2009 04:21:44 +0000 Subject: Add mute list request event and dummy response --- OpenSim/Framework/IClientAPI.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 66699b1..6d9ed79 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs @@ -431,6 +431,7 @@ namespace OpenSim.Framework public delegate void PickGodDelete(IClientAPI client, UUID agentID, UUID pickID, UUID queryID); public delegate void PickInfoUpdate(IClientAPI client, UUID pickID, UUID creatorID, bool topPick, string name, string desc, UUID snapshotID, int sortOrder, bool enabled); public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes); + public delegate void MuteListRequest(IClientAPI client, uint muteCRC); #endregion @@ -764,6 +765,8 @@ namespace OpenSim.Framework event PickGodDelete OnPickGodDelete; event PickInfoUpdate OnPickInfoUpdate; event AvatarNotesUpdate OnAvatarNotesUpdate; + + event MuteListRequest OnMuteListRequest; /// /// Set the debug level at which packet output should be printed to console. @@ -1128,6 +1131,8 @@ namespace OpenSim.Framework void SendParcelDwellReply(int localID, UUID parcelID, float dwell); void SendUserInfoReply(bool imViaEmail, bool visible, string email); + + void SendUseCachedMuteList(); void KillEndDone(); -- cgit v1.1