aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
index 22a8f5a..ce7896e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
@@ -27,12 +27,13 @@
27 27
28using System.Net; 28using System.Net;
29using NUnit.Framework; 29using NUnit.Framework;
30using OpenMetaverse.Packets;
30using OpenSim.Framework; 31using OpenSim.Framework;
31using OpenSim.Framework.Communications; 32using OpenSim.Framework.Communications;
32using OpenSim.Region.ClientStack; 33using OpenSim.Region.ClientStack;
33using OpenSim.Region.ClientStack.LindenUDP; 34using OpenSim.Region.ClientStack.LindenUDP;
34 35
35namespace OpenSim.Region.ClientStack.LindenUDP.Tests 36namespace OpenSim.Region.ClientStack.LindenUDP
36{ 37{
37 /// <summary> 38 /// <summary>
38 /// This will contain basic tests for the LindenUDP client stack 39 /// This will contain basic tests for the LindenUDP client stack
@@ -47,6 +48,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
47 48
48 uint port = 666; 49 uint port = 666;
49 llUdpServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null); 50 llUdpServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null);
51
52 UseCircuitCodePacket uccp = new UseCircuitCodePacket();
53 //llUdpServer.epS
50 } 54 }
51 } 55 }
52} 56}