From 7c7ea57c5c2bf01280e2df03cedc999aa5e7be87 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 9 Jan 2009 02:59:56 +0000 Subject: Finish dwell sending, adding the forgotten method body. Add UserInfo and a dummy reply to enable Hippo Viewer users to disable IM logging (option was greyed out in OpenSim before) --- OpenSim/Tests/Common/Mock/TestClient.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs') diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 83bd9d9..b5d6f6b 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs @@ -93,7 +93,6 @@ namespace OpenSim.Tests.Common.Mock public event ViewerEffectEventHandler OnViewerEffect; public event FetchInventory OnAgentDataUpdateRequest; - public event FetchInventory OnUserInfoRequest; public event TeleportLocationRequest OnSetStartLocationRequest; public event UpdateShape OnUpdatePrimShape; @@ -248,6 +247,9 @@ namespace OpenSim.Tests.Common.Mock public event ParcelDwellRequest OnParcelDwellRequest; + public event UserInfoRequest OnUserInfoRequest; + public event UpdateUserInfo OnUpdateUserInfo; + #pragma warning restore 67 /// @@ -991,5 +993,9 @@ namespace OpenSim.Tests.Common.Mock public void SendParcelDwellReply(int localID, UUID parcelID, float dwell) { } + + public void SendUserInfoReply(bool imViaEmail, bool visible, string email) + { + } } } -- cgit v1.1