diff options
author | Monty Brandenberg <monty@lindenlab.com> | 2012-06-19 15:43:29 -0400 |
---|---|---|
committer | Monty Brandenberg <monty@lindenlab.com> | 2012-06-19 15:43:29 -0400 |
commit | f0353abe7605778048d69ce3acb8f5ddd5693083 (patch) | |
tree | ea684f04a37f467b1cea9b0db93d9f112644f1cd /indra/llcorehttp/_httpoprequest.h | |
parent | 1cf8e785bad3562fac23feeb2343cfaec1b971bc (diff) |
Implement timeout and retry count options for requests.
Pretty straightforward. Still don't like how I'm managing
the options block. Struct? Accessors? Can't decide. But
the options now speed up the unit test runs even as I add
tests.
Diffstat (limited to 'indra/llcorehttp/_httpoprequest.h')
-rw-r--r-- | indra/llcorehttp/_httpoprequest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcorehttp/_httpoprequest.h b/indra/llcorehttp/_httpoprequest.h index 4643cc3b75..9278445763 100644 --- a/indra/llcorehttp/_httpoprequest.h +++ b/indra/llcorehttp/_httpoprequest.h @@ -155,7 +155,7 @@ public: // Policy data int mPolicyRetries; HttpTime mPolicyRetryAt; - const int mPolicyRetryLimit; + int mPolicyRetryLimit; }; // end class HttpOpRequest |