diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs index 6bfa864..ef1f34a 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | |||
@@ -82,6 +82,20 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
82 | internal LLPacketThrottle AssetThrottle; | 82 | internal LLPacketThrottle AssetThrottle; |
83 | internal LLPacketThrottle TextureThrottle; | 83 | internal LLPacketThrottle TextureThrottle; |
84 | internal LLPacketThrottle TotalThrottle; | 84 | internal LLPacketThrottle TotalThrottle; |
85 | |||
86 | /// <summary> | ||
87 | /// The number of packets in the OutgoingPacketQueue | ||
88 | /// | ||
89 | /// </summary> | ||
90 | internal int TextureOutgoingPacketQueueCount | ||
91 | { | ||
92 | get | ||
93 | { | ||
94 | if (TextureOutgoingPacketQueue == null) | ||
95 | return 0; | ||
96 | return TextureOutgoingPacketQueue.Count; | ||
97 | } | ||
98 | } | ||
85 | 99 | ||
86 | // private long LastThrottle; | 100 | // private long LastThrottle; |
87 | // private long ThrottleInterval; | 101 | // private long ThrottleInterval; |