aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-11-17 19:58:27 +0000
committerJustin Clark-Casey (justincc)2010-11-17 22:55:19 +0000
commitc4f3175e173b399f533fc42be36631d97b696a5a (patch)
treea2520f740a9fce825a586a21c2b799a6dd432e41 /OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
parentFix "show queues" console command (diff)
downloadopensim-SC_OLD-c4f3175e173b399f533fc42be36631d97b696a5a.zip
opensim-SC_OLD-c4f3175e173b399f533fc42be36631d97b696a5a.tar.gz
opensim-SC_OLD-c4f3175e173b399f533fc42be36631d97b696a5a.tar.bz2
opensim-SC_OLD-c4f3175e173b399f533fc42be36631d97b696a5a.tar.xz
add "Unacked bytes" column to "show queues"
This should show the number of bytes sent to the client that it has not yet acknowledged.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
index 1812c08..c4db5da 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClient.cs
@@ -256,9 +256,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
256 public string GetStats() 256 public string GetStats()
257 { 257 {
258 return string.Format( 258 return string.Format(
259 "{0,9} {1,10} {2,8} {3,7} {4,7} {5,7} {6,7} {7,9} {8,7} {9,7}", 259 "{0,9} {1,9} {2,9} {3,8} {4,7} {5,7} {6,7} {7,7} {8,9} {9,7} {10,7}",
260 PacketsSent, 260 PacketsSent,
261 PacketsReceived, 261 PacketsReceived,
262 UnackedBytes,
262 m_throttleCategories[(int)ThrottleOutPacketType.Resend].Content, 263 m_throttleCategories[(int)ThrottleOutPacketType.Resend].Content,
263 m_throttleCategories[(int)ThrottleOutPacketType.Land].Content, 264 m_throttleCategories[(int)ThrottleOutPacketType.Land].Content,
264 m_throttleCategories[(int)ThrottleOutPacketType.Wind].Content, 265 m_throttleCategories[(int)ThrottleOutPacketType.Wind].Content,