diff options
author | Ansariel <none@none> | 2015-10-09 09:26:21 +0200 |
---|---|---|
committer | Ansariel <none@none> | 2015-10-09 09:26:21 +0200 |
commit | 736549f03fbcd87542aff27dd587923d00ab681e (patch) | |
tree | e0548f350e70df026c737c1f7a51085db47fef89 | |
parent | 844455af02e709390ac53bfcb6e1c4f8ba6a57e3 (diff) |
STORM-2122: UDP data bandwidth measuring is off by factor 8
-rwxr-xr-x | doc/contributions.txt | 1 | ||||
-rw-r--r-- | indra/newview/llviewerregion.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/contributions.txt b/doc/contributions.txt index e67df2453e..fcadccab22 100755 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -219,6 +219,7 @@ Ansariel Hiller STORM-2105 STORM-2151 MAINT-8085 + STORM-2122 Aralara Rajal Arare Chantilly CHUIBUG-191 diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index 52dc3fbb69..feaafad2e1 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -1877,7 +1877,7 @@ void LLViewerRegion::updateNetStats() mLastPacketsLost = mPacketsLost; mPacketsIn = cdp->getPacketsIn(); - mBitsIn = 8 * cdp->getBytesIn(); + mBitsIn = cdp->getBytesIn(); mPacketsOut = cdp->getPacketsOut(); mPacketsLost = cdp->getPacketsLost(); mPingDelay = cdp->getPingDelay(); |