summaryrefslogtreecommitdiff
path: root/indra/newview/llhttpretrypolicy.h
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-04-12 17:04:48 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-04-12 17:04:48 -0400
commitbb237ce15f0a7bc4a3fbffc45b1e4548fd1d2f81 (patch)
treebba6ac1e44172c6f95f46802ec189a3fe47dcd44 /indra/newview/llhttpretrypolicy.h
parenta8cdcfc9a893b7debf7c006022b57c389b50bf0d (diff)
SH_4061 WIP - retry policy org and tests
Diffstat (limited to 'indra/newview/llhttpretrypolicy.h')
-rwxr-xr-xindra/newview/llhttpretrypolicy.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/indra/newview/llhttpretrypolicy.h b/indra/newview/llhttpretrypolicy.h
index ca37e5f73c..6f63f047de 100755
--- a/indra/newview/llhttpretrypolicy.h
+++ b/indra/newview/llhttpretrypolicy.h
@@ -56,16 +56,7 @@ public:
class LLAdaptiveRetryPolicy: public LLHTTPRetryPolicy
{
public:
- LLAdaptiveRetryPolicy(F32 min_delay, F32 max_delay, F32 backoff_factor, U32 max_retries):
- mMinDelay(min_delay),
- mMaxDelay(max_delay),
- mBackoffFactor(backoff_factor),
- mMaxRetries(max_retries),
- mDelay(min_delay),
- mRetryCount(0),
- mShouldRetry(true)
- {
- }
+ LLAdaptiveRetryPolicy(F32 min_delay, F32 max_delay, F32 backoff_factor, U32 max_retries);
// virtual
void onFailure(S32 status, const LLSD& headers);