aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-03 18:33:35 +0000
committerJustin Clarke Casey2008-11-03 18:33:35 +0000
commit8c71954e0892958da444ef5c82173262daa3f46c (patch)
tree6e06070ae11dbfd6a84b1ae7995e6df6275f892e
parentcompleting move to refactored multi-channel capable IRCBridgeModule (diff)
downloadopensim-SC_OLD-8c71954e0892958da444ef5c82173262daa3f46c.zip
opensim-SC_OLD-8c71954e0892958da444ef5c82173262daa3f46c.tar.gz
opensim-SC_OLD-8c71954e0892958da444ef5c82173262daa3f46c.tar.bz2
opensim-SC_OLD-8c71954e0892958da444ef5c82173262daa3f46c.tar.xz
* Use nini to pass config information to the client stack, rather than the ClientStackUserSettings class
* This conforms better to other module usage
-rw-r--r--OpenSim/Framework/Servers/RestSessionService.cs1
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs18
-rw-r--r--OpenSim/Region/ClientStack/ClientStackManager.cs15
-rw-r--r--OpenSim/Region/ClientStack/IClientNetworkServer.cs3
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs1
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs6
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs13
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs4
-rw-r--r--OpenSim/Region/ClientStack/RegionApplicationBase.cs10
-rw-r--r--prebuild.xml1
10 files changed, 43 insertions, 29 deletions
diff --git a/OpenSim/Framework/Servers/RestSessionService.cs b/OpenSim/Framework/Servers/RestSessionService.cs
index 1cfb425..eaeda62 100644
--- a/OpenSim/Framework/Servers/RestSessionService.cs
+++ b/OpenSim/Framework/Servers/RestSessionService.cs
@@ -77,7 +77,6 @@ namespace OpenSim.Framework.Servers
77 77
78 public class RestSessionObjectPosterResponse<TRequest, TResponse> 78 public class RestSessionObjectPosterResponse<TRequest, TResponse>
79 { 79 {
80
81 public ReturnResponse<TResponse> ResponseCallback; 80 public ReturnResponse<TResponse> ResponseCallback;
82 81
83 public void BeginPostObject(string requestUrl, TRequest obj, string sid, string aid) 82 public void BeginPostObject(string requestUrl, TRequest obj, string sid, string aid)
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 2bb4b57..ebcea28 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -208,13 +208,13 @@ namespace OpenSim
208 /// <returns></returns> 208 /// <returns></returns>
209 public static IConfigSource DefaultConfig() 209 public static IConfigSource DefaultConfig()
210 { 210 {
211 IConfigSource DefaultConfig = new IniConfigSource(); 211 IConfigSource defaultConfig = new IniConfigSource();
212 212
213 { 213 {
214 IConfig config = DefaultConfig.Configs["Startup"]; 214 IConfig config = defaultConfig.Configs["Startup"];
215 215
216 if (null == config) 216 if (null == config)
217 config = DefaultConfig.AddConfig("Startup"); 217 config = defaultConfig.AddConfig("Startup");
218 218
219 config.Set("gridmode", false); 219 config.Set("gridmode", false);
220 config.Set("physics", "basicphysics"); 220 config.Set("physics", "basicphysics");
@@ -233,10 +233,10 @@ namespace OpenSim
233 } 233 }
234 234
235 { 235 {
236 IConfig config = DefaultConfig.Configs["StandAlone"]; 236 IConfig config = defaultConfig.Configs["StandAlone"];
237 237
238 if (null == config) 238 if (null == config)
239 config = DefaultConfig.AddConfig("StandAlone"); 239 config = defaultConfig.AddConfig("StandAlone");
240 240
241 config.Set("accounts_authenticate", false); 241 config.Set("accounts_authenticate", false);
242 config.Set("welcome_message", "Welcome to OpenSimulator"); 242 config.Set("welcome_message", "Welcome to OpenSimulator");
@@ -250,10 +250,10 @@ namespace OpenSim
250 } 250 }
251 251
252 { 252 {
253 IConfig config = DefaultConfig.Configs["Network"]; 253 IConfig config = defaultConfig.Configs["Network"];
254 254
255 if (null == config) 255 if (null == config)
256 config = DefaultConfig.AddConfig("Network"); 256 config = defaultConfig.AddConfig("Network");
257 257
258 config.Set("default_location_x", 1000); 258 config.Set("default_location_x", 1000);
259 config.Set("default_location_y", 1000); 259 config.Set("default_location_y", 1000);
@@ -270,7 +270,7 @@ namespace OpenSim
270 config.Set("secure_inventory_server", "true"); 270 config.Set("secure_inventory_server", "true");
271 } 271 }
272 272
273 return DefaultConfig; 273 return defaultConfig;
274 } 274 }
275 275
276 protected virtual void ReadConfigSettings() 276 protected virtual void ReadConfigSettings()
@@ -495,7 +495,7 @@ namespace OpenSim
495 } 495 }
496 496
497 IClientNetworkServer clientServer; 497 IClientNetworkServer clientServer;
498 Scene scene = SetupScene(regionInfo, proxyOffset, null, out clientServer); 498 Scene scene = SetupScene(regionInfo, proxyOffset, m_config.Source, out clientServer);
499 499
500 m_log.Info("[MODULES]: Loading Region's modules"); 500 m_log.Info("[MODULES]: Loading Region's modules");
501 501
diff --git a/OpenSim/Region/ClientStack/ClientStackManager.cs b/OpenSim/Region/ClientStack/ClientStackManager.cs
index 2751e0a..5723739 100644
--- a/OpenSim/Region/ClientStack/ClientStackManager.cs
+++ b/OpenSim/Region/ClientStack/ClientStackManager.cs
@@ -29,6 +29,7 @@ using System;
29using System.Net; 29using System.Net;
30using System.Reflection; 30using System.Reflection;
31using log4net; 31using log4net;
32using Nini.Config;
32using OpenSim.Framework; 33using OpenSim.Framework;
33using OpenSim.Region.ClientStack; 34using OpenSim.Region.ClientStack;
34using OpenSim.Framework.Communications; 35using OpenSim.Framework.Communications;
@@ -91,26 +92,24 @@ namespace OpenSim.Region.Environment
91 /// <param name="port"></param> 92 /// <param name="port"></param>
92 /// <param name="proxyPortOffset"></param> 93 /// <param name="proxyPortOffset"></param>
93 /// <param name="allow_alternate_port"></param> 94 /// <param name="allow_alternate_port"></param>
94 /// <param name="settings"> 95 /// <param name="configSource">
95 /// Can be null, in which case default values are used 96 /// Can be null, in which case default values are used
96 /// </param> 97 /// </param>
97 /// <param name="assetCache"></param> 98 /// <param name="assetCache"></param>
98 /// <param name="authenticateClass"></param> 99 /// <param name="authenticateClass"></param>
99 /// <returns></returns> 100 /// <returns></returns>
100 public IClientNetworkServer CreateServer( 101 public IClientNetworkServer CreateServer(
101 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, ClientStackUserSettings settings, 102 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, IConfigSource configSource,
102 AssetCache assetCache, AgentCircuitManager authenticateClass) 103 AssetCache assetCache, AgentCircuitManager authenticateClass)
103 { 104 {
104 if (null == settings)
105 settings = new ClientStackUserSettings();
106
107 if (plugin != null) 105 if (plugin != null)
108 { 106 {
109 IClientNetworkServer server = 107 IClientNetworkServer server =
110 (IClientNetworkServer) Activator.CreateInstance(pluginAssembly.GetType(plugin.ToString())); 108 (IClientNetworkServer)Activator.CreateInstance(pluginAssembly.GetType(plugin.ToString()));
111 109
112 server.Initialise( 110 server.Initialise(
113 _listenIP, ref port, proxyPortOffset, allow_alternate_port, settings, assetCache, authenticateClass); 111 _listenIP, ref port, proxyPortOffset, allow_alternate_port,
112 configSource, assetCache, authenticateClass);
114 113
115 return server; 114 return server;
116 } 115 }
diff --git a/OpenSim/Region/ClientStack/IClientNetworkServer.cs b/OpenSim/Region/ClientStack/IClientNetworkServer.cs
index fcec1b8..2d0630b 100644
--- a/OpenSim/Region/ClientStack/IClientNetworkServer.cs
+++ b/OpenSim/Region/ClientStack/IClientNetworkServer.cs
@@ -27,6 +27,7 @@
27 27
28using System.Net; 28using System.Net;
29using System.Net.Sockets; 29using System.Net.Sockets;
30using Nini.Config;
30using OpenSim.Framework; 31using OpenSim.Framework;
31using OpenSim.Region.Environment.Scenes; 32using OpenSim.Region.Environment.Scenes;
32using OpenSim.Framework.Communications.Cache; 33using OpenSim.Framework.Communications.Cache;
@@ -36,7 +37,7 @@ namespace OpenSim.Region.ClientStack
36 public interface IClientNetworkServer 37 public interface IClientNetworkServer
37 { 38 {
38 void Initialise( 39 void Initialise(
39 IPAddress _listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, ClientStackUserSettings settings, 40 IPAddress _listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, IConfigSource configSource,
40 AssetCache assetCache, AgentCircuitManager authenticateClass); 41 AssetCache assetCache, AgentCircuitManager authenticateClass);
41 42
42 Socket Server { get; } 43 Socket Server { get; }
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index d272667..dee5d80 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -1961,7 +1961,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
1961 1961
1962 public void SendAgentDataUpdate(UUID agentid, UUID activegroupid, string firstname, string lastname, ulong grouppowers, string groupname, string grouptitle) 1962 public void SendAgentDataUpdate(UUID agentid, UUID activegroupid, string firstname, string lastname, ulong grouppowers, string groupname, string grouptitle)
1963 { 1963 {
1964
1965 m_activeGroupID = activegroupid; 1964 m_activeGroupID = activegroupid;
1966 m_activeGroupName = groupname; 1965 m_activeGroupName = groupname;
1967 m_activeGroupPowers = grouppowers; 1966 m_activeGroupPowers = grouppowers;
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
index bf95045..9abde5d 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
@@ -322,6 +322,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
322 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length); 322 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length);
323 ResendThrottle.AddBytes(qpack.Packet.ToBytes().Length); 323 ResendThrottle.AddBytes(qpack.Packet.ToBytes().Length);
324 } 324 }
325
325 if (LandThrottle.UnderLimit() && LandOutgoingPacketQueue.Count > 0) 326 if (LandThrottle.UnderLimit() && LandOutgoingPacketQueue.Count > 0)
326 { 327 {
327 LLQueItem qpack = LandOutgoingPacketQueue.Dequeue(); 328 LLQueItem qpack = LandOutgoingPacketQueue.Dequeue();
@@ -330,6 +331,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
330 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length); 331 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length);
331 LandThrottle.AddBytes(qpack.Packet.ToBytes().Length); 332 LandThrottle.AddBytes(qpack.Packet.ToBytes().Length);
332 } 333 }
334
333 if (WindThrottle.UnderLimit() && WindOutgoingPacketQueue.Count > 0) 335 if (WindThrottle.UnderLimit() && WindOutgoingPacketQueue.Count > 0)
334 { 336 {
335 LLQueItem qpack = WindOutgoingPacketQueue.Dequeue(); 337 LLQueItem qpack = WindOutgoingPacketQueue.Dequeue();
@@ -338,6 +340,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
338 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length); 340 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length);
339 WindThrottle.AddBytes(qpack.Packet.ToBytes().Length); 341 WindThrottle.AddBytes(qpack.Packet.ToBytes().Length);
340 } 342 }
343
341 if (CloudThrottle.UnderLimit() && CloudOutgoingPacketQueue.Count > 0) 344 if (CloudThrottle.UnderLimit() && CloudOutgoingPacketQueue.Count > 0)
342 { 345 {
343 LLQueItem qpack = CloudOutgoingPacketQueue.Dequeue(); 346 LLQueItem qpack = CloudOutgoingPacketQueue.Dequeue();
@@ -346,6 +349,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
346 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length); 349 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length);
347 CloudThrottle.AddBytes(qpack.Packet.ToBytes().Length); 350 CloudThrottle.AddBytes(qpack.Packet.ToBytes().Length);
348 } 351 }
352
349 if (TaskThrottle.UnderLimit() && (TaskOutgoingPacketQueue.Count > 0 || TaskLowpriorityPacketQueue.Count > 0)) 353 if (TaskThrottle.UnderLimit() && (TaskOutgoingPacketQueue.Count > 0 || TaskLowpriorityPacketQueue.Count > 0))
350 { 354 {
351 LLQueItem qpack; 355 LLQueItem qpack;
@@ -362,6 +366,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
362 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length); 366 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length);
363 TaskThrottle.AddBytes(qpack.Packet.ToBytes().Length); 367 TaskThrottle.AddBytes(qpack.Packet.ToBytes().Length);
364 } 368 }
369
365 if (TextureThrottle.UnderLimit() && TextureOutgoingPacketQueue.Count > 0) 370 if (TextureThrottle.UnderLimit() && TextureOutgoingPacketQueue.Count > 0)
366 { 371 {
367 LLQueItem qpack = TextureOutgoingPacketQueue.Dequeue(); 372 LLQueItem qpack = TextureOutgoingPacketQueue.Dequeue();
@@ -370,6 +375,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
370 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length); 375 TotalThrottle.AddBytes(qpack.Packet.ToBytes().Length);
371 TextureThrottle.AddBytes(qpack.Packet.ToBytes().Length); 376 TextureThrottle.AddBytes(qpack.Packet.ToBytes().Length);
372 } 377 }
378
373 if (AssetThrottle.UnderLimit() && AssetOutgoingPacketQueue.Count > 0) 379 if (AssetThrottle.UnderLimit() && AssetOutgoingPacketQueue.Count > 0)
374 { 380 {
375 LLQueItem qpack = AssetOutgoingPacketQueue.Dequeue(); 381 LLQueItem qpack = AssetOutgoingPacketQueue.Dequeue();
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index ba4e18b..cbe6eff 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -33,6 +33,7 @@ using System.Net.Sockets;
33using System.Reflection; 33using System.Reflection;
34using OpenMetaverse.Packets; 34using OpenMetaverse.Packets;
35using log4net; 35using log4net;
36using Nini.Config;
36using OpenSim.Framework; 37using OpenSim.Framework;
37using OpenSim.Framework.Communications.Cache; 38using OpenSim.Framework.Communications.Cache;
38using OpenSim.Region.Environment.Scenes; 39using OpenSim.Region.Environment.Scenes;
@@ -127,10 +128,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
127 } 128 }
128 129
129 public LLUDPServer( 130 public LLUDPServer(
130 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, ClientStackUserSettings userSettings, 131 IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, IConfigSource configSource,
131 AssetCache assetCache, AgentCircuitManager authenticateClass) 132 AssetCache assetCache, AgentCircuitManager authenticateClass)
132 { 133 {
133 Initialise(_listenIP, ref port, proxyPortOffset, allow_alternate_port, userSettings, assetCache, authenticateClass); 134 Initialise(_listenIP, ref port, proxyPortOffset, allow_alternate_port, configSource, assetCache, authenticateClass);
134 } 135 }
135 136
136 /// <summary> 137 /// <summary>
@@ -140,13 +141,17 @@ namespace OpenSim.Region.ClientStack.LindenUDP
140 /// <param name="port"></param> 141 /// <param name="port"></param>
141 /// <param name="proxyPortOffsetParm"></param> 142 /// <param name="proxyPortOffsetParm"></param>
142 /// <param name="allow_alternate_port"></param> 143 /// <param name="allow_alternate_port"></param>
143 /// <param name="userSettings"></param> 144 /// <param name="configSource"></param>
144 /// <param name="assetCache"></param> 145 /// <param name="assetCache"></param>
145 /// <param name="circuitManager"></param> 146 /// <param name="circuitManager"></param>
146 public void Initialise( 147 public void Initialise(
147 IPAddress _listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, ClientStackUserSettings userSettings, 148 IPAddress _listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, IConfigSource configSource,
148 AssetCache assetCache, AgentCircuitManager circuitManager) 149 AssetCache assetCache, AgentCircuitManager circuitManager)
149 { 150 {
151 // XXX Temporary until we start unpacking the config source
152 // TODO: Don't forget to account for the null possibility
153 ClientStackUserSettings userSettings = new ClientStackUserSettings();
154
150 proxyPortOffset = proxyPortOffsetParm; 155 proxyPortOffset = proxyPortOffsetParm;
151 listenPort = (uint) (port + proxyPortOffsetParm); 156 listenPort = (uint) (port + proxyPortOffsetParm);
152 listenIP = _listenIP; 157 listenIP = _listenIP;
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
index 352f697..d55f423 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
@@ -27,6 +27,7 @@
27 27
28using System.Net; 28using System.Net;
29using log4net; 29using log4net;
30using Nini.Config;
30using NUnit.Framework; 31using NUnit.Framework;
31using NUnit.Framework.SyntaxHelpers; 32using NUnit.Framework.SyntaxHelpers;
32using OpenMetaverse; 33using OpenMetaverse;
@@ -68,12 +69,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
68 IScene scene, out TestLLUDPServer testLLUDPServer, out TestLLPacketServer testPacketServer, 69 IScene scene, out TestLLUDPServer testLLUDPServer, out TestLLPacketServer testPacketServer,
69 out AgentCircuitManager acm) 70 out AgentCircuitManager acm)
70 { 71 {
72 IConfigSource configSource = new IniConfigSource();
71 ClientStackUserSettings userSettings = new ClientStackUserSettings(); 73 ClientStackUserSettings userSettings = new ClientStackUserSettings();
72 testLLUDPServer = new TestLLUDPServer(); 74 testLLUDPServer = new TestLLUDPServer();
73 acm = new AgentCircuitManager(); 75 acm = new AgentCircuitManager();
74 76
75 uint port = 666; 77 uint port = 666;
76 testLLUDPServer.Initialise(null, ref port, 0, false, userSettings, null, acm); 78 testLLUDPServer.Initialise(null, ref port, 0, false, configSource, null, acm);
77 testPacketServer = new TestLLPacketServer(testLLUDPServer, userSettings); 79 testPacketServer = new TestLLPacketServer(testLLUDPServer, userSettings);
78 testLLUDPServer.LocalScene = scene; 80 testLLUDPServer.LocalScene = scene;
79 } 81 }
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
index 4006066..b671fc5 100644
--- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs
+++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs
@@ -122,14 +122,16 @@ namespace OpenSim.Region.ClientStack
122 /// <summary> 122 /// <summary>
123 /// Create a scene and its initial base structures. 123 /// Create a scene and its initial base structures.
124 /// </summary> 124 /// </summary>
125 /// TODO: Really configSource shouldn't be passed in here, but should be moved up to BaseOpenSimServer and
126 /// made common to all the servers.
127 ///
125 /// <param name="regionInfo"></param> 128 /// <param name="regionInfo"></param>
126 /// <param name="proxyOffset"></param> 129 /// <param name="proxyOffset"></param>
127 /// <param name="clientStackUserSettings"></param> 130 /// <param name="configSource"></param>
128 /// <param name="clientServer"> </param> 131 /// <param name="clientServer"> </param>
129 /// <returns></returns> 132 /// <returns></returns>
130 protected Scene SetupScene( 133 protected Scene SetupScene(
131 RegionInfo regionInfo, int proxyOffset, ClientStackUserSettings clientStackUserSettings, 134 RegionInfo regionInfo, int proxyOffset, IConfigSource configSource, out IClientNetworkServer clientServer)
132 out IClientNetworkServer clientServer)
133 { 135 {
134 AgentCircuitManager circuitManager = new AgentCircuitManager(); 136 AgentCircuitManager circuitManager = new AgentCircuitManager();
135 IPAddress listenIP = regionInfo.InternalEndPoint.Address; 137 IPAddress listenIP = regionInfo.InternalEndPoint.Address;
@@ -140,7 +142,7 @@ namespace OpenSim.Region.ClientStack
140 142
141 clientServer 143 clientServer
142 = m_clientStackManager.CreateServer( 144 = m_clientStackManager.CreateServer(
143 listenIP, ref port, proxyOffset, regionInfo.m_allow_alternate_ports, clientStackUserSettings, 145 listenIP, ref port, proxyOffset, regionInfo.m_allow_alternate_ports, configSource,
144 m_assetCache, circuitManager); 146 m_assetCache, circuitManager);
145 147
146 regionInfo.InternalEndPoint.Port = (int)port; 148 regionInfo.InternalEndPoint.Port = (int)port;
diff --git a/prebuild.xml b/prebuild.xml
index f463955..f5fd5f4 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -996,6 +996,7 @@
996 <ReferencePath>../../../../../bin/</ReferencePath> 996 <ReferencePath>../../../../../bin/</ReferencePath>
997 <Reference name="System"/> 997 <Reference name="System"/>
998 <Reference name="log4net.dll"/> 998 <Reference name="log4net.dll"/>
999 <Reference name="Nini.dll" />
999 <Reference name="nunit.framework.dll" /> 1000 <Reference name="nunit.framework.dll" />
1000 <Reference name="OpenMetaverse.dll"/> 1001 <Reference name="OpenMetaverse.dll"/>
1001 <Reference name="OpenMetaverseTypes.dll"/> 1002 <Reference name="OpenMetaverseTypes.dll"/>