aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xOpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
index bd5b282..252b2fc 100755
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
@@ -28,6 +28,7 @@
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Net; 30using System.Net;
31using System.Net.Sockets;
31using OpenMetaverse.Packets; 32using OpenMetaverse.Packets;
32using OpenSim.Framework; 33using OpenSim.Framework;
33using OpenSim.Framework.Communications.Cache; 34using OpenSim.Framework.Communications.Cache;
@@ -65,6 +66,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
65 return true; 66 return true;
66 } 67 }
67 68
69 public override void SendPacketTo(byte[] buffer, int size, SocketFlags flags, uint circuitcode)
70 {
71 // Don't do anything just yet
72 }
73
68 /// <summary> 74 /// <summary>
69 /// Load a packet to be received by the LLUDPServer on the next receive call 75 /// Load a packet to be received by the LLUDPServer on the next receive call
70 /// </summary> 76 /// </summary>
@@ -81,7 +87,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
81 public void ReceiveData(IAsyncResult result) 87 public void ReceiveData(IAsyncResult result)
82 { 88 {
83 OnReceivedData(result); 89 OnReceivedData(result);
84 } 90 }
85 91
86 /// <summary> 92 /// <summary>
87 /// Has a circuit with the given code been established? 93 /// Has a circuit with the given code been established?