diff options
author | Melanie Thielker | 2009-01-09 02:59:56 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-01-09 02:59:56 +0000 |
commit | 7c7ea57c5c2bf01280e2df03cedc999aa5e7be87 (patch) | |
tree | 73f90c8e9e362f7055bccf31af83fe332ce2f9ab /OpenSim/Tests | |
parent | * Adds the variables passed to the hashtable BaseHttpServer passes in. (diff) | |
download | opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.zip opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.gz opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.bz2 opensim-SC_OLD-7c7ea57c5c2bf01280e2df03cedc999aa5e7be87.tar.xz |
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)
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 8 |
1 files changed, 7 insertions, 1 deletions
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 | |||
93 | public event ViewerEffectEventHandler OnViewerEffect; | 93 | public event ViewerEffectEventHandler OnViewerEffect; |
94 | 94 | ||
95 | public event FetchInventory OnAgentDataUpdateRequest; | 95 | public event FetchInventory OnAgentDataUpdateRequest; |
96 | public event FetchInventory OnUserInfoRequest; | ||
97 | public event TeleportLocationRequest OnSetStartLocationRequest; | 96 | public event TeleportLocationRequest OnSetStartLocationRequest; |
98 | 97 | ||
99 | public event UpdateShape OnUpdatePrimShape; | 98 | public event UpdateShape OnUpdatePrimShape; |
@@ -248,6 +247,9 @@ namespace OpenSim.Tests.Common.Mock | |||
248 | 247 | ||
249 | public event ParcelDwellRequest OnParcelDwellRequest; | 248 | public event ParcelDwellRequest OnParcelDwellRequest; |
250 | 249 | ||
250 | public event UserInfoRequest OnUserInfoRequest; | ||
251 | public event UpdateUserInfo OnUpdateUserInfo; | ||
252 | |||
251 | #pragma warning restore 67 | 253 | #pragma warning restore 67 |
252 | 254 | ||
253 | /// <value> | 255 | /// <value> |
@@ -991,5 +993,9 @@ namespace OpenSim.Tests.Common.Mock | |||
991 | public void SendParcelDwellReply(int localID, UUID parcelID, float dwell) | 993 | public void SendParcelDwellReply(int localID, UUID parcelID, float dwell) |
992 | { | 994 | { |
993 | } | 995 | } |
996 | |||
997 | public void SendUserInfoReply(bool imViaEmail, bool visible, string email) | ||
998 | { | ||
999 | } | ||
994 | } | 1000 | } |
995 | } | 1001 | } |