diff options
author | Melanie Thielker | 2009-03-28 04:21:44 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-03-28 04:21:44 +0000 |
commit | 4f6c4378dad0f4122bdab9270fd7aaf3c60beb39 (patch) | |
tree | 1d36ab614a6ec70716a9d4afb2d1190eebea08d9 /OpenSim/Framework/IClientAPI.cs | |
parent | Fix the plumbing in the offline message module. (diff) | |
download | opensim-SC_OLD-4f6c4378dad0f4122bdab9270fd7aaf3c60beb39.zip opensim-SC_OLD-4f6c4378dad0f4122bdab9270fd7aaf3c60beb39.tar.gz opensim-SC_OLD-4f6c4378dad0f4122bdab9270fd7aaf3c60beb39.tar.bz2 opensim-SC_OLD-4f6c4378dad0f4122bdab9270fd7aaf3c60beb39.tar.xz |
Add mute list request event and dummy response
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 5 |
1 files changed, 5 insertions, 0 deletions
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 | |||
431 | public delegate void PickGodDelete(IClientAPI client, UUID agentID, UUID pickID, UUID queryID); | 431 | public delegate void PickGodDelete(IClientAPI client, UUID agentID, UUID pickID, UUID queryID); |
432 | public delegate void PickInfoUpdate(IClientAPI client, UUID pickID, UUID creatorID, bool topPick, string name, string desc, UUID snapshotID, int sortOrder, bool enabled); | 432 | public delegate void PickInfoUpdate(IClientAPI client, UUID pickID, UUID creatorID, bool topPick, string name, string desc, UUID snapshotID, int sortOrder, bool enabled); |
433 | public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes); | 433 | public delegate void AvatarNotesUpdate(IClientAPI client, UUID targetID, string notes); |
434 | public delegate void MuteListRequest(IClientAPI client, uint muteCRC); | ||
434 | 435 | ||
435 | #endregion | 436 | #endregion |
436 | 437 | ||
@@ -764,6 +765,8 @@ namespace OpenSim.Framework | |||
764 | event PickGodDelete OnPickGodDelete; | 765 | event PickGodDelete OnPickGodDelete; |
765 | event PickInfoUpdate OnPickInfoUpdate; | 766 | event PickInfoUpdate OnPickInfoUpdate; |
766 | event AvatarNotesUpdate OnAvatarNotesUpdate; | 767 | event AvatarNotesUpdate OnAvatarNotesUpdate; |
768 | |||
769 | event MuteListRequest OnMuteListRequest; | ||
767 | 770 | ||
768 | /// <summary> | 771 | /// <summary> |
769 | /// Set the debug level at which packet output should be printed to console. | 772 | /// Set the debug level at which packet output should be printed to console. |
@@ -1128,6 +1131,8 @@ namespace OpenSim.Framework | |||
1128 | void SendParcelDwellReply(int localID, UUID parcelID, float dwell); | 1131 | void SendParcelDwellReply(int localID, UUID parcelID, float dwell); |
1129 | 1132 | ||
1130 | void SendUserInfoReply(bool imViaEmail, bool visible, string email); | 1133 | void SendUserInfoReply(bool imViaEmail, bool visible, string email); |
1134 | |||
1135 | void SendUseCachedMuteList(); | ||
1131 | 1136 | ||
1132 | void KillEndDone(); | 1137 | void KillEndDone(); |
1133 | 1138 | ||