summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpservice.cpp
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-06-19 17:01:02 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-06-19 17:01:02 -0400
commita50944e078b98435685f04eda0ba93e95d4c61f2 (patch)
treec49f2b0b40de767b94beea0bf3ea098c6af382ab /indra/llcorehttp/_httpservice.cpp
parentf0353abe7605778048d69ce3acb8f5ddd5693083 (diff)
Cleanup: move magic nubmers to new _httpinternal.h header file.
Diffstat (limited to 'indra/llcorehttp/_httpservice.cpp')
-rw-r--r--indra/llcorehttp/_httpservice.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/indra/llcorehttp/_httpservice.cpp b/indra/llcorehttp/_httpservice.cpp
index 87a78820f5..25f64acc42 100644
--- a/indra/llcorehttp/_httpservice.cpp
+++ b/indra/llcorehttp/_httpservice.cpp
@@ -34,15 +34,12 @@
#include "_httppolicy.h"
#include "_httplibcurl.h"
#include "_thread.h"
+#include "_httpinternal.h"
#include "lltimer.h"
#include "llthread.h"
-// Tuning parameters
-static const int LOOP_SLEEP_NORMAL_MS = 2; // Normal per-loop sleep in milliseconds
-
-
namespace LLCore
{
@@ -230,11 +227,11 @@ HttpService::ELoopSpeed HttpService::processRequestQueue(ELoopSpeed loop)
if (! mExitRequested)
{
// Setup for subsequent tracing
- long tracing(0);
+ long tracing(TRACE_OFF);
mPolicy->getGlobalOptions().get(HttpRequest::GP_TRACE, &tracing);
op->mTracing = (std::max)(op->mTracing, int(tracing));
- if (op->mTracing > 0)
+ if (op->mTracing > TRACE_OFF)
{
LL_INFOS("CoreHttp") << "TRACE, FromRequestQueue, Handle: "
<< static_cast<HttpHandle>(op)