aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorOren Hurvitz2014-06-29 18:49:27 +0300
committerOren Hurvitz2014-07-21 09:10:50 +0100
commitaf3498efdbd0b165a7e37095b1d8a9e54723993c (patch)
tree6ce955802b93f276b53e8a47f346222772e0a637 /OpenSim/Framework
parentWrite UDP statistics to the log, not just the console (e.g., "show queues") (diff)
downloadopensim-SC_OLD-af3498efdbd0b165a7e37095b1d8a9e54723993c.zip
opensim-SC_OLD-af3498efdbd0b165a7e37095b1d8a9e54723993c.tar.gz
opensim-SC_OLD-af3498efdbd0b165a7e37095b1d8a9e54723993c.tar.bz2
opensim-SC_OLD-af3498efdbd0b165a7e37095b1d8a9e54723993c.tar.xz
In "show throttles", show the maximum drip rate. This shows whether a client is being throttled due to past poor performance.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/ClientInfo.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/ClientInfo.cs b/OpenSim/Framework/ClientInfo.cs
index 9021315..d68078e 100644
--- a/OpenSim/Framework/ClientInfo.cs
+++ b/OpenSim/Framework/ClientInfo.cs
@@ -54,6 +54,7 @@ namespace OpenSim.Framework
54 public int assetThrottle; 54 public int assetThrottle;
55 public int textureThrottle; 55 public int textureThrottle;
56 public int totalThrottle; 56 public int totalThrottle;
57 public int maxThrottle;
57 58
58 public Dictionary<string, int> SyncRequests = new Dictionary<string,int>(); 59 public Dictionary<string, int> SyncRequests = new Dictionary<string,int>();
59 public Dictionary<string, int> AsyncRequests = new Dictionary<string,int>(); 60 public Dictionary<string, int> AsyncRequests = new Dictionary<string,int>();