aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index edb7642..c059969 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -874,12 +874,20 @@ namespace OpenSim.Tests.Common.Mock
874 { 874 {
875 } 875 }
876 876
877 public void ProcessPendingPackets()
878 {
879 }
880
877 public void ProcessInPacket(Packet NewPack) 881 public void ProcessInPacket(Packet NewPack)
878 { 882 {
879 } 883 }
880 884
881 public void Close() 885 public void Close()
882 { 886 {
887 Close(true);
888 }
889 public void Close(bool sendStop)
890 {
883 m_scene.RemoveClient(AgentId); 891 m_scene.RemoveClient(AgentId);
884 } 892 }
885 893