diff options
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | 10 | ||||
-rw-r--r-- | prebuild.xml | 2 |
3 files changed, 10 insertions, 8 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs index 691afb3..5d3dba0 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketServer.cs | |||
@@ -41,12 +41,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
41 | 41 | ||
42 | protected readonly ILLClientStackNetworkHandler m_networkHandler; | 42 | protected readonly ILLClientStackNetworkHandler m_networkHandler; |
43 | protected IScene m_scene; | 43 | protected IScene m_scene; |
44 | |||
45 | //private readonly ClientManager m_clientManager = new ClientManager(); | ||
46 | //public ClientManager ClientManager | ||
47 | //{ | ||
48 | // get { return m_clientManager; } | ||
49 | //} | ||
50 | 44 | ||
51 | /// <summary> | 45 | /// <summary> |
52 | /// Tweakable user settings | 46 | /// Tweakable user settings |
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs index 5d8c79d..c821ca2 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | |||
@@ -25,7 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using NUnit.Framework; | 29 | using NUnit.Framework; |
30 | using OpenSim.Region.ClientStack; | ||
31 | using OpenSim.Region.ClientStack.LindenUDP; | ||
29 | 32 | ||
30 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests | 33 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests |
31 | { | 34 | { |
@@ -36,9 +39,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
36 | public class BasicCircuitTests | 39 | public class BasicCircuitTests |
37 | { | 40 | { |
38 | [Test] | 41 | [Test] |
39 | public void TestHello() | 42 | public void TestAddClient() |
40 | { | 43 | { |
41 | // Nowt here yet | 44 | IClientNetworkServer llUdpServer = new LLUDPServer(); |
45 | |||
46 | uint port = 666; | ||
47 | llUdpServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null); | ||
42 | } | 48 | } |
43 | } | 49 | } |
44 | } | 50 | } |
diff --git a/prebuild.xml b/prebuild.xml index 32a5ae1..8af2909 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -956,6 +956,8 @@ | |||
956 | </Configuration> | 956 | </Configuration> |
957 | 957 | ||
958 | <ReferencePath>../../../../../bin/</ReferencePath> | 958 | <ReferencePath>../../../../../bin/</ReferencePath> |
959 | <Reference name="OpenSim.Region.ClientStack"/> | ||
960 | <Reference name="OpenSim.Region.ClientStack.LindenUDP"/> | ||
959 | <Reference name="nunit.framework.dll" /> | 961 | <Reference name="nunit.framework.dll" /> |
960 | 962 | ||
961 | <Files> | 963 | <Files> |