aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs188
1 files changed, 94 insertions, 94 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
index 39472cb..4eee6b6 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
@@ -31,6 +31,7 @@ using System.Net;
31using log4net; 31using log4net;
32using OpenSim.Framework; 32using OpenSim.Framework;
33using OpenMetaverse; 33using OpenMetaverse;
34using OpenMetaverse.Packets;
34 35
35namespace OpenSim.Region.ClientStack.LindenUDP 36namespace OpenSim.Region.ClientStack.LindenUDP
36{ 37{
@@ -60,13 +61,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
60 /// </summary> 61 /// </summary>
61 public sealed class LLUDPClient 62 public sealed class LLUDPClient
62 { 63 {
63 private static readonly ILog m_log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); 64 // TODO: Make this a config setting
64
65 // FIXME: Make this a config setting
66 /// <summary>Percentage of the task throttle category that is allocated to avatar and prim 65 /// <summary>Percentage of the task throttle category that is allocated to avatar and prim
67 /// state updates</summary> 66 /// state updates</summary>
68 const float STATE_TASK_PERCENTAGE = 0.8f; 67 const float STATE_TASK_PERCENTAGE = 0.8f;
69 68
69 private static readonly ILog m_log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
70
70 /// <summary>The number of packet categories to throttle on. If a throttle category is added 71 /// <summary>The number of packet categories to throttle on. If a throttle category is added
71 /// or removed, this number must also change</summary> 72 /// or removed, this number must also change</summary>
72 const int THROTTLE_CATEGORY_COUNT = 8; 73 const int THROTTLE_CATEGORY_COUNT = 8;
@@ -129,21 +130,21 @@ namespace OpenSim.Region.ClientStack.LindenUDP
129 private int m_packetsSentReported; 130 private int m_packetsSentReported;
130 131
131 /// <summary>Throttle bucket for this agent's connection</summary> 132 /// <summary>Throttle bucket for this agent's connection</summary>
132 private readonly TokenBucket throttle; 133 private readonly TokenBucket m_throttle;
133 /// <summary>Throttle buckets for each packet category</summary> 134 /// <summary>Throttle buckets for each packet category</summary>
134 private readonly TokenBucket[] throttleCategories; 135 private readonly TokenBucket[] m_throttleCategories;
135 /// <summary>Throttle rate defaults and limits</summary> 136 /// <summary>Throttle rate defaults and limits</summary>
136 private readonly ThrottleRates defaultThrottleRates; 137 private readonly ThrottleRates m_defaultThrottleRates;
137 /// <summary>Outgoing queues for throttled packets</summary> 138 /// <summary>Outgoing queues for throttled packets</summary>
138 private readonly OpenSim.Framework.LocklessQueue<OutgoingPacket>[] packetOutboxes = new OpenSim.Framework.LocklessQueue<OutgoingPacket>[THROTTLE_CATEGORY_COUNT]; 139 private readonly OpenSim.Framework.LocklessQueue<OutgoingPacket>[] m_packetOutboxes = new OpenSim.Framework.LocklessQueue<OutgoingPacket>[THROTTLE_CATEGORY_COUNT];
139 /// <summary>A container that can hold one packet for each outbox, used to store 140 /// <summary>A container that can hold one packet for each outbox, used to store
140 /// dequeued packets that are being held for throttling</summary> 141 /// dequeued packets that are being held for throttling</summary>
141 private readonly OutgoingPacket[] nextPackets = new OutgoingPacket[THROTTLE_CATEGORY_COUNT]; 142 private readonly OutgoingPacket[] m_nextPackets = new OutgoingPacket[THROTTLE_CATEGORY_COUNT];
142 /// <summary>Flags to prevent queue empty callbacks from stacking up on 143 /// <summary>Flags to prevent queue empty callbacks from stacking up on
143 /// top of each other</summary> 144 /// top of each other</summary>
144 private readonly bool[] onQueueEmptyRunning = new bool[THROTTLE_CATEGORY_COUNT]; 145 private readonly bool[] m_onQueueEmptyRunning = new bool[THROTTLE_CATEGORY_COUNT];
145 /// <summary>A reference to the LLUDPServer that is managing this client</summary> 146 /// <summary>A reference to the LLUDPServer that is managing this client</summary>
146 private readonly LLUDPServer udpServer; 147 private readonly LLUDPServer m_udpServer;
147 148
148 /// <summary> 149 /// <summary>
149 /// Default constructor 150 /// Default constructor
@@ -157,27 +158,21 @@ namespace OpenSim.Region.ClientStack.LindenUDP
157 /// <param name="remoteEndPoint">Remote endpoint for this connection</param> 158 /// <param name="remoteEndPoint">Remote endpoint for this connection</param>
158 public LLUDPClient(LLUDPServer server, ThrottleRates rates, TokenBucket parentThrottle, uint circuitCode, UUID agentID, IPEndPoint remoteEndPoint) 159 public LLUDPClient(LLUDPServer server, ThrottleRates rates, TokenBucket parentThrottle, uint circuitCode, UUID agentID, IPEndPoint remoteEndPoint)
159 { 160 {
160 udpServer = server;
161 AgentID = agentID; 161 AgentID = agentID;
162 RemoteEndPoint = remoteEndPoint; 162 RemoteEndPoint = remoteEndPoint;
163 CircuitCode = circuitCode; 163 CircuitCode = circuitCode;
164 defaultThrottleRates = rates; 164 m_udpServer = server;
165 m_defaultThrottleRates = rates;
166 m_throttle = new TokenBucket(parentThrottle, rates.TotalLimit, rates.Total);
167 m_throttleCategories = new TokenBucket[THROTTLE_CATEGORY_COUNT];
165 168
166 for (int i = 0; i < THROTTLE_CATEGORY_COUNT; i++) 169 for (int i = 0; i < THROTTLE_CATEGORY_COUNT; i++)
167 packetOutboxes[i] = new OpenSim.Framework.LocklessQueue<OutgoingPacket>(); 170 {
168 171 ThrottleOutPacketType type = (ThrottleOutPacketType)i;
169 throttle = new TokenBucket(parentThrottle, rates.TotalLimit, rates.Total); 172
170 throttleCategories = new TokenBucket[THROTTLE_CATEGORY_COUNT]; 173 m_packetOutboxes[i] = new OpenSim.Framework.LocklessQueue<OutgoingPacket>();
171 throttleCategories[(int)ThrottleOutPacketType.Resend] = new TokenBucket(throttle, rates.ResendLimit, rates.Resend); 174 m_throttleCategories[i] = new TokenBucket(m_throttle, rates.GetLimit(type), rates.GetRate(type));
172 throttleCategories[(int)ThrottleOutPacketType.Land] = new TokenBucket(throttle, rates.LandLimit, rates.Land); 175 }
173 throttleCategories[(int)ThrottleOutPacketType.Wind] = new TokenBucket(throttle, rates.WindLimit, rates.Wind);
174 throttleCategories[(int)ThrottleOutPacketType.Cloud] = new TokenBucket(throttle, rates.CloudLimit, rates.Cloud);
175 throttleCategories[(int)ThrottleOutPacketType.Texture] = new TokenBucket(throttle, rates.TextureLimit, rates.Texture);
176 throttleCategories[(int)ThrottleOutPacketType.Asset] = new TokenBucket(throttle, rates.AssetLimit, rates.Asset);
177 // State and Transaction are actually sub-categories of the LLUDP generic "Task" category
178 TokenBucket stateBucket = new TokenBucket(throttle, (int)((float)rates.TaskLimit * STATE_TASK_PERCENTAGE), (int)((float)rates.Task * STATE_TASK_PERCENTAGE));
179 throttleCategories[(int)ThrottleOutPacketType.State] = stateBucket;
180 throttleCategories[(int)ThrottleOutPacketType.Task] = new TokenBucket(throttle, rates.TaskLimit - stateBucket.MaxBurst, rates.Task - stateBucket.DripRate);
181 176
182 // Set the granularity variable used for retransmission calculations to 177 // Set the granularity variable used for retransmission calculations to
183 // the measured resolution of Environment.TickCount 178 // the measured resolution of Environment.TickCount
@@ -199,8 +194,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
199 NeedAcks.Clear(); 194 NeedAcks.Clear();
200 for (int i = 0; i < THROTTLE_CATEGORY_COUNT; i++) 195 for (int i = 0; i < THROTTLE_CATEGORY_COUNT; i++)
201 { 196 {
202 packetOutboxes[i].Clear(); 197 m_packetOutboxes[i].Clear();
203 nextPackets[i] = null; 198 m_nextPackets[i] = null;
204 } 199 }
205 OnPacketStats = null; 200 OnPacketStats = null;
206 OnQueueEmpty = null; 201 OnQueueEmpty = null;
@@ -219,13 +214,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
219 info.pendingAcks = new Dictionary<uint, uint>(); 214 info.pendingAcks = new Dictionary<uint, uint>();
220 info.needAck = new Dictionary<uint, byte[]>(); 215 info.needAck = new Dictionary<uint, byte[]>();
221 216
222 info.resendThrottle = throttleCategories[(int)ThrottleOutPacketType.Resend].DripRate; 217 info.resendThrottle = m_throttleCategories[(int)ThrottleOutPacketType.Resend].DripRate;
223 info.landThrottle = throttleCategories[(int)ThrottleOutPacketType.Land].DripRate; 218 info.landThrottle = m_throttleCategories[(int)ThrottleOutPacketType.Land].DripRate;
224 info.windThrottle = throttleCategories[(int)ThrottleOutPacketType.Wind].DripRate; 219 info.windThrottle = m_throttleCategories[(int)ThrottleOutPacketType.Wind].DripRate;
225 info.cloudThrottle = throttleCategories[(int)ThrottleOutPacketType.Cloud].DripRate; 220 info.cloudThrottle = m_throttleCategories[(int)ThrottleOutPacketType.Cloud].DripRate;
226 info.taskThrottle = throttleCategories[(int)ThrottleOutPacketType.State].DripRate + throttleCategories[(int)ThrottleOutPacketType.Task].DripRate; 221 info.taskThrottle = m_throttleCategories[(int)ThrottleOutPacketType.State].DripRate + m_throttleCategories[(int)ThrottleOutPacketType.Task].DripRate;
227 info.assetThrottle = throttleCategories[(int)ThrottleOutPacketType.Asset].DripRate; 222 info.assetThrottle = m_throttleCategories[(int)ThrottleOutPacketType.Asset].DripRate;
228 info.textureThrottle = throttleCategories[(int)ThrottleOutPacketType.Texture].DripRate; 223 info.textureThrottle = m_throttleCategories[(int)ThrottleOutPacketType.Texture].DripRate;
229 info.totalThrottle = info.resendThrottle + info.landThrottle + info.windThrottle + info.cloudThrottle + 224 info.totalThrottle = info.resendThrottle + info.landThrottle + info.windThrottle + info.cloudThrottle +
230 info.taskThrottle + info.assetThrottle + info.textureThrottle; 225 info.taskThrottle + info.assetThrottle + info.textureThrottle;
231 226
@@ -286,6 +281,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
286 adjData = throttleData; 281 adjData = throttleData;
287 } 282 }
288 283
284 // 0.125f converts from bits to bytes
289 int resend = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4; 285 int resend = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4;
290 int land = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4; 286 int land = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4;
291 int wind = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4; 287 int wind = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4;
@@ -293,22 +289,40 @@ namespace OpenSim.Region.ClientStack.LindenUDP
293 int task = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4; 289 int task = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4;
294 int texture = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4; 290 int texture = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); pos += 4;
295 int asset = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); 291 int asset = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f);
292 // State is a subcategory of task that we allocate a percentage to
293 int state = (int)((float)task * STATE_TASK_PERCENTAGE);
294 task -= state;
296 295
297 resend = (resend <= defaultThrottleRates.ResendLimit) ? resend : defaultThrottleRates.ResendLimit; 296 int ceiling = Int32.MaxValue;
298 land = (land <= defaultThrottleRates.LandLimit) ? land : defaultThrottleRates.LandLimit; 297 if (m_defaultThrottleRates.Total != 0)
299 wind = (wind <= defaultThrottleRates.WindLimit) ? wind : defaultThrottleRates.WindLimit; 298 {
300 cloud = (cloud <= defaultThrottleRates.CloudLimit) ? cloud : defaultThrottleRates.CloudLimit; 299 ceiling = m_defaultThrottleRates.Total;
301 task = (task <= defaultThrottleRates.TaskLimit) ? task : defaultThrottleRates.TaskLimit; 300 if (ceiling < Packet.MTU) ceiling = Packet.MTU;
302 texture = (texture <= defaultThrottleRates.TextureLimit) ? texture : defaultThrottleRates.TextureLimit; 301 }
303 asset = (asset <= defaultThrottleRates.AssetLimit) ? asset : defaultThrottleRates.AssetLimit; 302
304 303 resend = Utils.Clamp(resend, Packet.MTU, ceiling);
305 SetThrottle(ThrottleOutPacketType.Resend, resend); 304 land = Utils.Clamp(land, Packet.MTU, ceiling);
306 SetThrottle(ThrottleOutPacketType.Land, land); 305 wind = Utils.Clamp(wind, Packet.MTU, ceiling);
307 SetThrottle(ThrottleOutPacketType.Wind, wind); 306 cloud = Utils.Clamp(cloud, Packet.MTU, ceiling);
308 SetThrottle(ThrottleOutPacketType.Cloud, cloud); 307 task = Utils.Clamp(task, Packet.MTU, ceiling);
309 SetThrottle(ThrottleOutPacketType.Task, task); 308 texture = Utils.Clamp(texture, Packet.MTU, ceiling);
310 SetThrottle(ThrottleOutPacketType.Texture, texture); 309 asset = Utils.Clamp(asset, Packet.MTU, ceiling);
311 SetThrottle(ThrottleOutPacketType.Asset, asset); 310 state = Utils.Clamp(state, Packet.MTU, ceiling);
311
312 int total = resend + land + wind + cloud + task + texture + asset + state;
313 int taskTotal = task + state;
314
315 m_log.DebugFormat("[LLUDPCLIENT]: {0} is setting throttles. Resend={1}, Land={2}, Wind={3}, Cloud={4}, Task={5}, Texture={6}, Asset={7}, State={8}, Total={9}",
316 AgentID, resend, land, wind, cloud, task, texture, asset, state, total);
317
318 SetThrottle(ThrottleOutPacketType.Resend, resend, resend);
319 SetThrottle(ThrottleOutPacketType.Land, land, land);
320 SetThrottle(ThrottleOutPacketType.Wind, wind, wind);
321 SetThrottle(ThrottleOutPacketType.Cloud, cloud, cloud);
322 SetThrottle(ThrottleOutPacketType.Task, task, taskTotal);
323 SetThrottle(ThrottleOutPacketType.Texture, texture, texture);
324 SetThrottle(ThrottleOutPacketType.Asset, asset, asset);
325 SetThrottle(ThrottleOutPacketType.State, state, taskTotal);
312 } 326 }
313 327
314 public byte[] GetThrottlesPacked() 328 public byte[] GetThrottlesPacked()
@@ -316,40 +330,26 @@ namespace OpenSim.Region.ClientStack.LindenUDP
316 byte[] data = new byte[7 * 4]; 330 byte[] data = new byte[7 * 4];
317 int i = 0; 331 int i = 0;
318 332
319 Buffer.BlockCopy(Utils.FloatToBytes((float)throttleCategories[(int)ThrottleOutPacketType.Resend].DripRate), 0, data, i, 4); i += 4; 333 Buffer.BlockCopy(Utils.FloatToBytes((float)m_throttleCategories[(int)ThrottleOutPacketType.Resend].DripRate), 0, data, i, 4); i += 4;
320 Buffer.BlockCopy(Utils.FloatToBytes((float)throttleCategories[(int)ThrottleOutPacketType.Land].DripRate), 0, data, i, 4); i += 4; 334 Buffer.BlockCopy(Utils.FloatToBytes((float)m_throttleCategories[(int)ThrottleOutPacketType.Land].DripRate), 0, data, i, 4); i += 4;
321 Buffer.BlockCopy(Utils.FloatToBytes((float)throttleCategories[(int)ThrottleOutPacketType.Wind].DripRate), 0, data, i, 4); i += 4; 335 Buffer.BlockCopy(Utils.FloatToBytes((float)m_throttleCategories[(int)ThrottleOutPacketType.Wind].DripRate), 0, data, i, 4); i += 4;
322 Buffer.BlockCopy(Utils.FloatToBytes((float)throttleCategories[(int)ThrottleOutPacketType.Cloud].DripRate), 0, data, i, 4); i += 4; 336 Buffer.BlockCopy(Utils.FloatToBytes((float)m_throttleCategories[(int)ThrottleOutPacketType.Cloud].DripRate), 0, data, i, 4); i += 4;
323 Buffer.BlockCopy(Utils.FloatToBytes((float)(throttleCategories[(int)ThrottleOutPacketType.Task].DripRate) + 337 Buffer.BlockCopy(Utils.FloatToBytes((float)(m_throttleCategories[(int)ThrottleOutPacketType.Task].DripRate) +
324 throttleCategories[(int)ThrottleOutPacketType.State].DripRate), 0, data, i, 4); i += 4; 338 m_throttleCategories[(int)ThrottleOutPacketType.State].DripRate), 0, data, i, 4); i += 4;
325 Buffer.BlockCopy(Utils.FloatToBytes((float)throttleCategories[(int)ThrottleOutPacketType.Texture].DripRate), 0, data, i, 4); i += 4; 339 Buffer.BlockCopy(Utils.FloatToBytes((float)m_throttleCategories[(int)ThrottleOutPacketType.Texture].DripRate), 0, data, i, 4); i += 4;
326 Buffer.BlockCopy(Utils.FloatToBytes((float)throttleCategories[(int)ThrottleOutPacketType.Asset].DripRate), 0, data, i, 4); i += 4; 340 Buffer.BlockCopy(Utils.FloatToBytes((float)m_throttleCategories[(int)ThrottleOutPacketType.Asset].DripRate), 0, data, i, 4); i += 4;
327 341
328 return data; 342 return data;
329 } 343 }
330 344
331 public void SetThrottle(ThrottleOutPacketType category, int rate) 345 public void SetThrottle(ThrottleOutPacketType category, int rate, int maxBurst)
332 { 346 {
333 if (category == ThrottleOutPacketType.Task) 347 int i = (int)category;
334 { 348 if (i >= 0 && i < m_throttleCategories.Length)
335 TokenBucket stateBucket = throttleCategories[(int)ThrottleOutPacketType.State];
336 TokenBucket taskBucket = throttleCategories[(int)ThrottleOutPacketType.Task];
337
338 stateBucket.MaxBurst = (int)((float)rate * STATE_TASK_PERCENTAGE);
339 stateBucket.DripRate = (int)((float)rate * STATE_TASK_PERCENTAGE);
340
341 taskBucket.MaxBurst = rate - stateBucket.MaxBurst;
342 taskBucket.DripRate = rate - stateBucket.DripRate;
343 }
344 else
345 { 349 {
346 int i = (int)category; 350 TokenBucket bucket = m_throttleCategories[(int)category];
347 if (i >= 0 && i < throttleCategories.Length) 351 bucket.DripRate = rate;
348 { 352 bucket.MaxBurst = maxBurst;
349 TokenBucket bucket = throttleCategories[(int)category];
350 bucket.MaxBurst = rate;
351 bucket.DripRate = rate;
352 }
353 } 353 }
354 } 354 }
355 355
@@ -357,12 +357,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
357 { 357 {
358 int category = (int)packet.Category; 358 int category = (int)packet.Category;
359 359
360 if (category >= 0 && category < packetOutboxes.Length) 360 if (category >= 0 && category < m_packetOutboxes.Length)
361 { 361 {
362 OpenSim.Framework.LocklessQueue<OutgoingPacket> queue = packetOutboxes[category]; 362 OpenSim.Framework.LocklessQueue<OutgoingPacket> queue = m_packetOutboxes[category];
363 TokenBucket bucket = throttleCategories[category]; 363 TokenBucket bucket = m_throttleCategories[category];
364 364
365 if (throttleCategories[category].RemoveTokens(packet.Buffer.DataLength)) 365 if (m_throttleCategories[category].RemoveTokens(packet.Buffer.DataLength))
366 { 366 {
367 // Enough tokens were removed from the bucket, the packet will not be queued 367 // Enough tokens were removed from the bucket, the packet will not be queued
368 return false; 368 return false;
@@ -397,19 +397,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP
397 397
398 for (int i = 0; i < THROTTLE_CATEGORY_COUNT; i++) 398 for (int i = 0; i < THROTTLE_CATEGORY_COUNT; i++)
399 { 399 {
400 bucket = throttleCategories[i]; 400 bucket = m_throttleCategories[i];
401 401
402 if (nextPackets[i] != null) 402 if (m_nextPackets[i] != null)
403 { 403 {
404 // This bucket was empty the last time we tried to send a packet, 404 // This bucket was empty the last time we tried to send a packet,
405 // leaving a dequeued packet still waiting to be sent out. Try to 405 // leaving a dequeued packet still waiting to be sent out. Try to
406 // send it again 406 // send it again
407 OutgoingPacket nextPacket = nextPackets[i]; 407 OutgoingPacket nextPacket = m_nextPackets[i];
408 if (bucket.RemoveTokens(nextPacket.Buffer.DataLength)) 408 if (bucket.RemoveTokens(nextPacket.Buffer.DataLength))
409 { 409 {
410 // Send the packet 410 // Send the packet
411 udpServer.SendPacketFinal(nextPacket); 411 m_udpServer.SendPacketFinal(nextPacket);
412 nextPackets[i] = null; 412 m_nextPackets[i] = null;
413 packetSent = true; 413 packetSent = true;
414 } 414 }
415 } 415 }
@@ -417,7 +417,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
417 { 417 {
418 // No dequeued packet waiting to be sent, try to pull one off 418 // No dequeued packet waiting to be sent, try to pull one off
419 // this queue 419 // this queue
420 queue = packetOutboxes[i]; 420 queue = m_packetOutboxes[i];
421 if (queue.Dequeue(out packet)) 421 if (queue.Dequeue(out packet))
422 { 422 {
423 // A packet was pulled off the queue. See if we have 423 // A packet was pulled off the queue. See if we have
@@ -425,13 +425,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
425 if (bucket.RemoveTokens(packet.Buffer.DataLength)) 425 if (bucket.RemoveTokens(packet.Buffer.DataLength))
426 { 426 {
427 // Send the packet 427 // Send the packet
428 udpServer.SendPacketFinal(packet); 428 m_udpServer.SendPacketFinal(packet);
429 packetSent = true; 429 packetSent = true;
430 } 430 }
431 else 431 else
432 { 432 {
433 // Save the dequeued packet for the next iteration 433 // Save the dequeued packet for the next iteration
434 nextPackets[i] = packet; 434 m_nextPackets[i] = packet;
435 } 435 }
436 436
437 // If the queue is empty after this dequeue, fire the queue 437 // If the queue is empty after this dequeue, fire the queue
@@ -493,7 +493,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
493 /// for</param> 493 /// for</param>
494 private void BeginFireQueueEmpty(int throttleIndex) 494 private void BeginFireQueueEmpty(int throttleIndex)
495 { 495 {
496 if (!onQueueEmptyRunning[throttleIndex]) 496 if (!m_onQueueEmptyRunning[throttleIndex])
497 Util.FireAndForget(FireQueueEmpty, throttleIndex); 497 Util.FireAndForget(FireQueueEmpty, throttleIndex);
498 } 498 }
499 499
@@ -511,12 +511,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
511 511
512 if (callback != null) 512 if (callback != null)
513 { 513 {
514 if (!onQueueEmptyRunning[i]) 514 if (!m_onQueueEmptyRunning[i])
515 { 515 {
516 onQueueEmptyRunning[i] = true; 516 m_onQueueEmptyRunning[i] = true;
517 try { callback(type); } 517 try { callback(type); }
518 catch (Exception e) { m_log.Error("[LLUDPCLIENT]: OnQueueEmpty(" + type + ") threw an exception: " + e.Message, e); } 518 catch (Exception e) { m_log.Error("[LLUDPCLIENT]: OnQueueEmpty(" + type + ") threw an exception: " + e.Message, e); }
519 onQueueEmptyRunning[i] = false; 519 m_onQueueEmptyRunning[i] = false;
520 } 520 }
521 } 521 }
522 } 522 }