diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index 8ca0b1f..610067e 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -251,7 +251,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
251 | /// </summary> | 251 | /// </summary> |
252 | public long MaxTotalDripRate { get { return Throttle.RequestedDripRate; } } | 252 | public long MaxTotalDripRate { get { return Throttle.RequestedDripRate; } } |
253 | 253 | ||
254 | /// <summary>Bandwidth throttle rates for this UDP server</summary> | 254 | /// <summary>Per client throttle rates enforced by this server</summary> |
255 | /// <remarks> | ||
256 | /// If the total rate is non-zero, then this is the maximum total throttle setting that any client can ever have. | ||
257 | /// The other rates (resend, asset, etc.) are the defaults for a new client and can be changed (and usually | ||
258 | /// do get changed immediately). They do not need to sum to the total. | ||
259 | /// </remarks> | ||
255 | public ThrottleRates ThrottleRates { get; private set; } | 260 | public ThrottleRates ThrottleRates { get; private set; } |
256 | 261 | ||
257 | /// <summary>Manages authentication for agent circuits</summary> | 262 | /// <summary>Manages authentication for agent circuits</summary> |