diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 4e17b04..2b7895b 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -70,7 +70,7 @@ namespace OpenSim.Tests.Common.Mock | |||
70 | public event MoneyTransferRequest OnMoneyTransferRequest; | 70 | public event MoneyTransferRequest OnMoneyTransferRequest; |
71 | public event ParcelBuy OnParcelBuy; | 71 | public event ParcelBuy OnParcelBuy; |
72 | public event Action<IClientAPI> OnConnectionClosed; | 72 | public event Action<IClientAPI> OnConnectionClosed; |
73 | 73 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | |
74 | public event ImprovedInstantMessage OnInstantMessage; | 74 | public event ImprovedInstantMessage OnInstantMessage; |
75 | public event ChatMessage OnChatFromClient; | 75 | public event ChatMessage OnChatFromClient; |
76 | public event TextureRequest OnRequestTexture; | 76 | public event TextureRequest OnRequestTexture; |
@@ -273,7 +273,7 @@ namespace OpenSim.Tests.Common.Mock | |||
273 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 273 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
274 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 274 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
275 | public event ClassifiedDelete OnClassifiedDelete; | 275 | public event ClassifiedDelete OnClassifiedDelete; |
276 | public event ClassifiedDelete OnClassifiedGodDelete; | 276 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
277 | 277 | ||
278 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 278 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
279 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 279 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
@@ -312,6 +312,7 @@ namespace OpenSim.Tests.Common.Mock | |||
312 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | 312 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; |
313 | public event SimWideDeletesDelegate OnSimWideDeletes; | 313 | public event SimWideDeletesDelegate OnSimWideDeletes; |
314 | public event SendPostcard OnSendPostcard; | 314 | public event SendPostcard OnSendPostcard; |
315 | public event ChangeInventoryItemFlags OnChangeInventoryItemFlags; | ||
315 | public event MuteListEntryUpdate OnUpdateMuteListEntry; | 316 | public event MuteListEntryUpdate OnUpdateMuteListEntry; |
316 | public event MuteListEntryRemove OnRemoveMuteListEntry; | 317 | public event MuteListEntryRemove OnRemoveMuteListEntry; |
317 | public event GodlikeMessage onGodlikeMessage; | 318 | public event GodlikeMessage onGodlikeMessage; |
@@ -896,6 +897,10 @@ namespace OpenSim.Tests.Common.Mock | |||
896 | 897 | ||
897 | public void Close() | 898 | public void Close() |
898 | { | 899 | { |
900 | Close(true); | ||
901 | } | ||
902 | public void Close(bool sendStop) | ||
903 | { | ||
899 | m_scene.RemoveClient(AgentId, true); | 904 | m_scene.RemoveClient(AgentId, true); |
900 | } | 905 | } |
901 | 906 | ||