diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-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 37b90e1..c8b1936 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; |
@@ -274,7 +274,7 @@ namespace OpenSim.Tests.Common.Mock | |||
274 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 274 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
275 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 275 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
276 | public event ClassifiedDelete OnClassifiedDelete; | 276 | public event ClassifiedDelete OnClassifiedDelete; |
277 | public event ClassifiedDelete OnClassifiedGodDelete; | 277 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
278 | 278 | ||
279 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 279 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
280 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 280 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
@@ -313,6 +313,7 @@ namespace OpenSim.Tests.Common.Mock | |||
313 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | 313 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; |
314 | public event SimWideDeletesDelegate OnSimWideDeletes; | 314 | public event SimWideDeletesDelegate OnSimWideDeletes; |
315 | public event SendPostcard OnSendPostcard; | 315 | public event SendPostcard OnSendPostcard; |
316 | public event ChangeInventoryItemFlags OnChangeInventoryItemFlags; | ||
316 | public event MuteListEntryUpdate OnUpdateMuteListEntry; | 317 | public event MuteListEntryUpdate OnUpdateMuteListEntry; |
317 | public event MuteListEntryRemove OnRemoveMuteListEntry; | 318 | public event MuteListEntryRemove OnRemoveMuteListEntry; |
318 | public event GodlikeMessage onGodlikeMessage; | 319 | public event GodlikeMessage onGodlikeMessage; |
@@ -897,6 +898,10 @@ namespace OpenSim.Tests.Common.Mock | |||
897 | 898 | ||
898 | public void Close() | 899 | public void Close() |
899 | { | 900 | { |
901 | Close(true); | ||
902 | } | ||
903 | public void Close(bool sendStop) | ||
904 | { | ||
900 | m_scene.RemoveClient(AgentId, true); | 905 | m_scene.RemoveClient(AgentId, true); |
901 | } | 906 | } |
902 | 907 | ||