diff options
author | Rider Linden <rider@lindenlab.com> | 2017-07-28 14:07:25 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2017-07-28 14:07:25 -0700 |
commit | 57d5744f2c064ccb7bf8dd3dca2a24f6755297ac (patch) | |
tree | cef79679961afaf2ef43f21c6f4901ed3f536fb0 /indra/newview/llappcorehttp.cpp | |
parent | b46697fcc155d026b5a951256d53581e7af20036 (diff) |
MAINT-7634: Move StatsAccumulator into llcommon, collect data sent and error codes from core.
Diffstat (limited to 'indra/newview/llappcorehttp.cpp')
-rw-r--r-- | indra/newview/llappcorehttp.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llappcorehttp.cpp b/indra/newview/llappcorehttp.cpp index c1f898284a..261a7b5ad9 100644 --- a/indra/newview/llappcorehttp.cpp +++ b/indra/newview/llappcorehttp.cpp @@ -39,6 +39,7 @@ #include <curl/curl.h> #include "llcorehttputil.h" +#include "httpstats.h" // Here is where we begin to get our connection usage under control. // This establishes llcorehttp policy classes that, among other @@ -313,6 +314,8 @@ void LLAppCoreHttp::requestStop() void LLAppCoreHttp::cleanup() { + LLCore::HTTPStats::instance().dumpStats(); + if (LLCORE_HTTP_HANDLE_INVALID == mStopHandle) { // Should have been started already... |