diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 5ad3c9f..78bb18e 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -531,9 +531,13 @@ namespace OpenSim.Tests.Common.Mock | |||
531 | { | 531 | { |
532 | } | 532 | } |
533 | 533 | ||
534 | public virtual void SendChatMessage( | 534 | public virtual void SendChatMessage(string message, byte type, Vector3 fromPos, string fromName, |
535 | string message, byte type, Vector3 fromPos, string fromName, | 535 | UUID fromAgentID, byte source, byte audible) |
536 | UUID fromAgentID, UUID ownerID, byte source, byte audible) | 536 | { |
537 | } | ||
538 | |||
539 | public virtual void SendChatMessage(byte[] message, byte type, Vector3 fromPos, string fromName, | ||
540 | UUID fromAgentID, byte source, byte audible) | ||
537 | { | 541 | { |
538 | } | 542 | } |
539 | 543 | ||
@@ -935,12 +939,12 @@ namespace OpenSim.Tests.Common.Mock | |||
935 | Close(); | 939 | Close(); |
936 | } | 940 | } |
937 | 941 | ||
938 | public void Close() | 942 | public void Close(bool c) |
939 | { | 943 | { |
940 | Close(true, false); | 944 | Close(); |
941 | } | 945 | } |
942 | 946 | ||
943 | public void Close(bool sendStop, bool force) | 947 | public void Close() |
944 | { | 948 | { |
945 | // Fire the callback for this connection closing | 949 | // Fire the callback for this connection closing |
946 | // This is necesary to get the presence detector to notice that a client has logged out. | 950 | // This is necesary to get the presence detector to notice that a client has logged out. |